diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..36dd28b0 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,11 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Launch and Debug Standalone Blazor WebAssembly App", + "type": "blazorwasm", + "request": "launch", + "cwd": "${workspaceFolder}/CS_Todo" + } + ] +} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 00000000..24404827 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,41 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "${workspaceFolder}/CS_Todo/CS_Todo.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "publish", + "command": "dotnet", + "type": "process", + "args": [ + "publish", + "${workspaceFolder}/CS_Todo/CS_Todo.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "watch", + "command": "dotnet", + "type": "process", + "args": [ + "watch", + "run", + "--project", + "${workspaceFolder}/CS_Todo/CS_Todo.csproj" + ], + "problemMatcher": "$msCompile" + } + ] +} \ No newline at end of file diff --git a/CS_Todo/App.razor b/CS_Todo/App.razor new file mode 100644 index 00000000..623580d0 --- /dev/null +++ b/CS_Todo/App.razor @@ -0,0 +1,12 @@ + + + + + + + Not found + +

Sorry, there's nothing at this address.

+
+
+
diff --git a/CS_Todo/CS_Todo.csproj b/CS_Todo/CS_Todo.csproj new file mode 100644 index 00000000..63009860 --- /dev/null +++ b/CS_Todo/CS_Todo.csproj @@ -0,0 +1,14 @@ + + + + net6.0 + enable + enable + + + + + + + + diff --git a/CS_Todo/Pages/Counter.razor b/CS_Todo/Pages/Counter.razor new file mode 100644 index 00000000..b21f0521 --- /dev/null +++ b/CS_Todo/Pages/Counter.razor @@ -0,0 +1,18 @@ +@page "/counter" + +Counter + +

Counter

+ +

Current count: @currentCount

+ + + +@code { + private int currentCount = 0; + + private void IncrementCount() + { + currentCount++; + } +} diff --git a/CS_Todo/Pages/FetchData.razor b/CS_Todo/Pages/FetchData.razor new file mode 100644 index 00000000..46ed16e1 --- /dev/null +++ b/CS_Todo/Pages/FetchData.razor @@ -0,0 +1,57 @@ +@page "/fetchdata" +@inject HttpClient Http + +Weather forecast + +

Weather forecast

+ +

This component demonstrates fetching data from the server.

+ +@if (forecasts == null) +{ +

Loading...

+} +else +{ + + + + + + + + + + + @foreach (var forecast in forecasts) + { + + + + + + + } + +
DateTemp. (C)Temp. (F)Summary
@forecast.Date.ToShortDateString()@forecast.TemperatureC@forecast.TemperatureF@forecast.Summary
+} + +@code { + private WeatherForecast[]? forecasts; + + protected override async Task OnInitializedAsync() + { + forecasts = await Http.GetFromJsonAsync("sample-data/weather.json"); + } + + public class WeatherForecast + { + public DateTime Date { get; set; } + + public int TemperatureC { get; set; } + + public string? Summary { get; set; } + + public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); + } +} diff --git a/CS_Todo/Pages/Index.razor b/CS_Todo/Pages/Index.razor new file mode 100644 index 00000000..b1a9fbde --- /dev/null +++ b/CS_Todo/Pages/Index.razor @@ -0,0 +1,9 @@ +@page "/" + +Index + +

Hello, world!

+ +Welcome to your new app. + + diff --git a/CS_Todo/Pages/TodoList.razor b/CS_Todo/Pages/TodoList.razor new file mode 100644 index 00000000..af5e870b --- /dev/null +++ b/CS_Todo/Pages/TodoList.razor @@ -0,0 +1,29 @@ +@page "/todo" +

Accounts

+ + +@if (todoList.Count > 0) +{ + +} + +@code { + private List todoList = new List(); + private string newTodoItem { get; set; } + private void Save() + { + if (!string.IsNullOrWhiteSpace(newTodoItem)) + { + todoList.Add(new TodoItem(newTodoItem)); + newTodoItem = string.Empty; + } + } +} diff --git a/CS_Todo/Program.cs b/CS_Todo/Program.cs new file mode 100644 index 00000000..1892d53b --- /dev/null +++ b/CS_Todo/Program.cs @@ -0,0 +1,11 @@ +using Microsoft.AspNetCore.Components.Web; +using Microsoft.AspNetCore.Components.WebAssembly.Hosting; +using CS_Todo; + +var builder = WebAssemblyHostBuilder.CreateDefault(args); +builder.RootComponents.Add("#app"); +builder.RootComponents.Add("head::after"); + +builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); + +await builder.Build().RunAsync(); diff --git a/CS_Todo/Properties/launchSettings.json b/CS_Todo/Properties/launchSettings.json new file mode 100644 index 00000000..b97fe15c --- /dev/null +++ b/CS_Todo/Properties/launchSettings.json @@ -0,0 +1,30 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:20321", + "sslPort": 44362 + } + }, + "profiles": { + "CS_Todo": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", + "applicationUrl": "https://localhost:7038;http://localhost:5055", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/CS_Todo/Shared/MainLayout.razor b/CS_Todo/Shared/MainLayout.razor new file mode 100644 index 00000000..6c0ab5a8 --- /dev/null +++ b/CS_Todo/Shared/MainLayout.razor @@ -0,0 +1,17 @@ +@inherits LayoutComponentBase + +
+ + +
+
+ About +
+ +
+ @Body +
+
+
diff --git a/CS_Todo/Shared/MainLayout.razor.css b/CS_Todo/Shared/MainLayout.razor.css new file mode 100644 index 00000000..c7ac7630 --- /dev/null +++ b/CS_Todo/Shared/MainLayout.razor.css @@ -0,0 +1,81 @@ +.page { + position: relative; + display: flex; + flex-direction: column; +} + +main { + flex: 1; +} + +.sidebar { + background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); +} + +.top-row { + background-color: #f7f7f7; + border-bottom: 1px solid #d6d5d5; + justify-content: flex-end; + height: 3.5rem; + display: flex; + align-items: center; +} + + .top-row ::deep a, .top-row ::deep .btn-link { + white-space: nowrap; + margin-left: 1.5rem; + text-decoration: none; + } + + .top-row ::deep a:hover, .top-row ::deep .btn-link:hover { + text-decoration: underline; + } + + .top-row ::deep a:first-child { + overflow: hidden; + text-overflow: ellipsis; + } + +@media (max-width: 640.98px) { + .top-row:not(.auth) { + display: none; + } + + .top-row.auth { + justify-content: space-between; + } + + .top-row ::deep a, .top-row ::deep .btn-link { + margin-left: 0; + } +} + +@media (min-width: 641px) { + .page { + flex-direction: row; + } + + .sidebar { + width: 250px; + height: 100vh; + position: sticky; + top: 0; + } + + .top-row { + position: sticky; + top: 0; + z-index: 1; + } + + .top-row.auth ::deep a:first-child { + flex: 1; + text-align: right; + width: 0; + } + + .top-row, article { + padding-left: 2rem !important; + padding-right: 1.5rem !important; + } +} diff --git a/CS_Todo/Shared/NavMenu.razor b/CS_Todo/Shared/NavMenu.razor new file mode 100644 index 00000000..36f04653 --- /dev/null +++ b/CS_Todo/Shared/NavMenu.razor @@ -0,0 +1,44 @@ + + +
+ +
+ +@code { + private bool collapseNavMenu = true; + + private string? NavMenuCssClass => collapseNavMenu ? "collapse" : null; + + private void ToggleNavMenu() + { + collapseNavMenu = !collapseNavMenu; + } +} diff --git a/CS_Todo/Shared/NavMenu.razor.css b/CS_Todo/Shared/NavMenu.razor.css new file mode 100644 index 00000000..e681f238 --- /dev/null +++ b/CS_Todo/Shared/NavMenu.razor.css @@ -0,0 +1,62 @@ +.navbar-toggler { + background-color: rgba(255, 255, 255, 0.1); +} + +.top-row { + height: 3.5rem; + background-color: rgba(0,0,0,0.4); +} + +.navbar-brand { + font-size: 1.1rem; +} + +.oi { + width: 2rem; + font-size: 1.1rem; + vertical-align: text-top; + top: -2px; +} + +.nav-item { + font-size: 0.9rem; + padding-bottom: 0.5rem; +} + + .nav-item:first-of-type { + padding-top: 1rem; + } + + .nav-item:last-of-type { + padding-bottom: 1rem; + } + + .nav-item ::deep a { + color: #d7d7d7; + border-radius: 4px; + height: 3rem; + display: flex; + align-items: center; + line-height: 3rem; + } + +.nav-item ::deep a.active { + background-color: rgba(255,255,255,0.25); + color: white; +} + +.nav-item ::deep a:hover { + background-color: rgba(255,255,255,0.1); + color: white; +} + +@media (min-width: 641px) { + .navbar-toggler { + display: none; + } + + .collapse { + /* Never collapse the sidebar for wide screens */ + display: block; + } +} diff --git a/CS_Todo/Shared/SurveyPrompt.razor b/CS_Todo/Shared/SurveyPrompt.razor new file mode 100644 index 00000000..69a37234 --- /dev/null +++ b/CS_Todo/Shared/SurveyPrompt.razor @@ -0,0 +1,16 @@ +
+ + @Title + + + Please take our + brief survey + + and tell us what you think. +
+ +@code { + // Demonstrates how a parent component can supply parameters + [Parameter] + public string? Title { get; set; } +} diff --git a/CS_Todo/TodoItem.cs b/CS_Todo/TodoItem.cs new file mode 100644 index 00000000..1a8a1190 --- /dev/null +++ b/CS_Todo/TodoItem.cs @@ -0,0 +1,10 @@ +public class TodoItem +{ + public string Title { get; set; } + public bool IsComplete { get; set; } = false; + + public TodoItem(string title) + { + Title = title; + } +} \ No newline at end of file diff --git a/CS_Todo/_Imports.razor b/CS_Todo/_Imports.razor new file mode 100644 index 00000000..470e5c85 --- /dev/null +++ b/CS_Todo/_Imports.razor @@ -0,0 +1,10 @@ +@using System.Net.Http +@using System.Net.Http.Json +@using Microsoft.AspNetCore.Components.Forms +@using Microsoft.AspNetCore.Components.Routing +@using Microsoft.AspNetCore.Components.Web +@using Microsoft.AspNetCore.Components.Web.Virtualization +@using Microsoft.AspNetCore.Components.WebAssembly.Http +@using Microsoft.JSInterop +@using CS_Todo +@using CS_Todo.Shared diff --git a/CS_Todo/bin/Debug/net6.0/CS_Todo.dll b/CS_Todo/bin/Debug/net6.0/CS_Todo.dll new file mode 100644 index 00000000..f7265ec6 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/CS_Todo.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/CS_Todo.pdb b/CS_Todo/bin/Debug/net6.0/CS_Todo.pdb new file mode 100644 index 00000000..42bb32c1 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/CS_Todo.pdb differ diff --git a/CS_Todo/bin/Debug/net6.0/CS_Todo.staticwebassets.runtime.json b/CS_Todo/bin/Debug/net6.0/CS_Todo.staticwebassets.runtime.json new file mode 100644 index 00000000..90f255f4 --- /dev/null +++ b/CS_Todo/bin/Debug/net6.0/CS_Todo.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/","/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/scopedcss/bundle/","/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/"],"Root":{"Children":{"css":{"Children":{"app.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/app.css"},"Patterns":null},"bootstrap":{"Children":{"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"open-iconic":{"Children":{"FONT-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/FONT-LICENSE"},"Patterns":null},"font":{"Children":{"css":{"Children":{"open-iconic-bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/css/open-iconic-bootstrap.min.css"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"open-iconic.eot":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.eot"},"Patterns":null},"open-iconic.otf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.otf"},"Patterns":null},"open-iconic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.svg"},"Patterns":null},"open-iconic.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.ttf"},"Patterns":null},"open-iconic.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.woff"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"ICON-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/ICON-LICENSE"},"Patterns":null},"README.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/README.md"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"icon-192.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"icon-192.png"},"Patterns":null},"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null},"sample-data":{"Children":{"weather.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"sample-data/weather.json"},"Patterns":null}},"Asset":null,"Patterns":null},"CS_Todo.styles.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"CS_Todo.styles.css"},"Patterns":null},"_framework":{"Children":{"Microsoft.AspNetCore.Authorization.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.AspNetCore.Authorization.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.AspNetCore.Components.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.Forms.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.AspNetCore.Components.Forms.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.Web.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.AspNetCore.Components.Web.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.AspNetCore.Components.WebAssembly.dll"},"Patterns":null},"Microsoft.AspNetCore.Metadata.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.AspNetCore.Metadata.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Configuration.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Configuration.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.Binder.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Configuration.Binder.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.FileExtensions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Configuration.FileExtensions.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Configuration.Json.dll"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.dll"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.FileProviders.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.FileProviders.Physical.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Physical.dll"},"Patterns":null},"Microsoft.Extensions.FileSystemGlobbing.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.FileSystemGlobbing.dll"},"Patterns":null},"Microsoft.Extensions.Logging.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Logging.dll"},"Patterns":null},"Microsoft.Extensions.Logging.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Logging.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.Options.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Options.dll"},"Patterns":null},"Microsoft.Extensions.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Primitives.dll"},"Patterns":null},"Microsoft.JSInterop.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.JSInterop.dll"},"Patterns":null},"Microsoft.JSInterop.WebAssembly.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.JSInterop.WebAssembly.dll"},"Patterns":null},"System.IO.Pipelines.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.Pipelines.dll"},"Patterns":null},"Microsoft.CSharp.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.CSharp.dll"},"Patterns":null},"Microsoft.VisualBasic.Core.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.VisualBasic.Core.dll"},"Patterns":null},"Microsoft.VisualBasic.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.VisualBasic.dll"},"Patterns":null},"Microsoft.Win32.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Win32.Primitives.dll"},"Patterns":null},"Microsoft.Win32.Registry.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Win32.Registry.dll"},"Patterns":null},"System.AppContext.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.AppContext.dll"},"Patterns":null},"System.Buffers.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Buffers.dll"},"Patterns":null},"System.Collections.Concurrent.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Collections.Concurrent.dll"},"Patterns":null},"System.Collections.Immutable.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Collections.Immutable.dll"},"Patterns":null},"System.Collections.NonGeneric.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Collections.NonGeneric.dll"},"Patterns":null},"System.Collections.Specialized.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Collections.Specialized.dll"},"Patterns":null},"System.Collections.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Collections.dll"},"Patterns":null},"System.ComponentModel.Annotations.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ComponentModel.Annotations.dll"},"Patterns":null},"System.ComponentModel.DataAnnotations.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ComponentModel.DataAnnotations.dll"},"Patterns":null},"System.ComponentModel.EventBasedAsync.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ComponentModel.EventBasedAsync.dll"},"Patterns":null},"System.ComponentModel.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ComponentModel.Primitives.dll"},"Patterns":null},"System.ComponentModel.TypeConverter.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ComponentModel.TypeConverter.dll"},"Patterns":null},"System.ComponentModel.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ComponentModel.dll"},"Patterns":null},"System.Configuration.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Configuration.dll"},"Patterns":null},"System.Console.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Console.dll"},"Patterns":null},"System.Core.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Core.dll"},"Patterns":null},"System.Data.Common.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Data.Common.dll"},"Patterns":null},"System.Data.DataSetExtensions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Data.DataSetExtensions.dll"},"Patterns":null},"System.Data.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Data.dll"},"Patterns":null},"System.Diagnostics.Contracts.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.Contracts.dll"},"Patterns":null},"System.Diagnostics.Debug.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.Debug.dll"},"Patterns":null},"System.Diagnostics.DiagnosticSource.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.DiagnosticSource.dll"},"Patterns":null},"System.Diagnostics.FileVersionInfo.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.FileVersionInfo.dll"},"Patterns":null},"System.Diagnostics.Process.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.Process.dll"},"Patterns":null},"System.Diagnostics.StackTrace.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.StackTrace.dll"},"Patterns":null},"System.Diagnostics.TextWriterTraceListener.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.TextWriterTraceListener.dll"},"Patterns":null},"System.Diagnostics.Tools.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.Tools.dll"},"Patterns":null},"System.Diagnostics.TraceSource.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.TraceSource.dll"},"Patterns":null},"System.Diagnostics.Tracing.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.Tracing.dll"},"Patterns":null},"System.Drawing.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Drawing.Primitives.dll"},"Patterns":null},"System.Drawing.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Drawing.dll"},"Patterns":null},"System.Dynamic.Runtime.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Dynamic.Runtime.dll"},"Patterns":null},"System.Formats.Asn1.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Formats.Asn1.dll"},"Patterns":null},"System.Globalization.Calendars.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Globalization.Calendars.dll"},"Patterns":null},"System.Globalization.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Globalization.Extensions.dll"},"Patterns":null},"System.Globalization.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Globalization.dll"},"Patterns":null},"System.IO.Compression.Brotli.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.Compression.Brotli.dll"},"Patterns":null},"System.IO.Compression.FileSystem.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.Compression.FileSystem.dll"},"Patterns":null},"System.IO.Compression.ZipFile.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.Compression.ZipFile.dll"},"Patterns":null},"System.IO.Compression.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.Compression.dll"},"Patterns":null},"System.IO.FileSystem.AccessControl.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.FileSystem.AccessControl.dll"},"Patterns":null},"System.IO.FileSystem.DriveInfo.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.FileSystem.DriveInfo.dll"},"Patterns":null},"System.IO.FileSystem.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.FileSystem.Primitives.dll"},"Patterns":null},"System.IO.FileSystem.Watcher.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.FileSystem.Watcher.dll"},"Patterns":null},"System.IO.FileSystem.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.FileSystem.dll"},"Patterns":null},"System.IO.IsolatedStorage.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.IsolatedStorage.dll"},"Patterns":null},"System.IO.MemoryMappedFiles.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.MemoryMappedFiles.dll"},"Patterns":null},"System.IO.Pipes.AccessControl.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.Pipes.AccessControl.dll"},"Patterns":null},"System.IO.Pipes.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.Pipes.dll"},"Patterns":null},"System.IO.UnmanagedMemoryStream.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.UnmanagedMemoryStream.dll"},"Patterns":null},"System.IO.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.dll"},"Patterns":null},"System.Linq.Expressions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Linq.Expressions.dll"},"Patterns":null},"System.Linq.Parallel.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Linq.Parallel.dll"},"Patterns":null},"System.Linq.Queryable.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Linq.Queryable.dll"},"Patterns":null},"System.Linq.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Linq.dll"},"Patterns":null},"System.Memory.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Memory.dll"},"Patterns":null},"System.Net.Http.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Http.Json.dll"},"Patterns":null},"System.Net.Http.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Http.dll"},"Patterns":null},"System.Net.HttpListener.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.HttpListener.dll"},"Patterns":null},"System.Net.Mail.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Mail.dll"},"Patterns":null},"System.Net.NameResolution.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.NameResolution.dll"},"Patterns":null},"System.Net.NetworkInformation.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.NetworkInformation.dll"},"Patterns":null},"System.Net.Ping.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Ping.dll"},"Patterns":null},"System.Net.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Primitives.dll"},"Patterns":null},"System.Net.Quic.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Quic.dll"},"Patterns":null},"System.Net.Requests.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Requests.dll"},"Patterns":null},"System.Net.Security.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Security.dll"},"Patterns":null},"System.Net.ServicePoint.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.ServicePoint.dll"},"Patterns":null},"System.Net.Sockets.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Sockets.dll"},"Patterns":null},"System.Net.WebClient.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.WebClient.dll"},"Patterns":null},"System.Net.WebHeaderCollection.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.WebHeaderCollection.dll"},"Patterns":null},"System.Net.WebProxy.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.WebProxy.dll"},"Patterns":null},"System.Net.WebSockets.Client.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.WebSockets.Client.dll"},"Patterns":null},"System.Net.WebSockets.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.WebSockets.dll"},"Patterns":null},"System.Net.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.dll"},"Patterns":null},"System.Numerics.Vectors.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Numerics.Vectors.dll"},"Patterns":null},"System.Numerics.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Numerics.dll"},"Patterns":null},"System.ObjectModel.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ObjectModel.dll"},"Patterns":null},"System.Private.DataContractSerialization.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Private.DataContractSerialization.dll"},"Patterns":null},"System.Private.Runtime.InteropServices.JavaScript.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Private.Runtime.InteropServices.JavaScript.dll"},"Patterns":null},"System.Private.Uri.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Private.Uri.dll"},"Patterns":null},"System.Private.Xml.Linq.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Private.Xml.Linq.dll"},"Patterns":null},"System.Private.Xml.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Private.Xml.dll"},"Patterns":null},"System.Reflection.DispatchProxy.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.DispatchProxy.dll"},"Patterns":null},"System.Reflection.Emit.ILGeneration.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.Emit.ILGeneration.dll"},"Patterns":null},"System.Reflection.Emit.Lightweight.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.Emit.Lightweight.dll"},"Patterns":null},"System.Reflection.Emit.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.Emit.dll"},"Patterns":null},"System.Reflection.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.Extensions.dll"},"Patterns":null},"System.Reflection.Metadata.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.Metadata.dll"},"Patterns":null},"System.Reflection.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.Primitives.dll"},"Patterns":null},"System.Reflection.TypeExtensions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.TypeExtensions.dll"},"Patterns":null},"System.Reflection.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.dll"},"Patterns":null},"System.Resources.Reader.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Resources.Reader.dll"},"Patterns":null},"System.Resources.ResourceManager.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Resources.ResourceManager.dll"},"Patterns":null},"System.Resources.Writer.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Resources.Writer.dll"},"Patterns":null},"System.Runtime.CompilerServices.Unsafe.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.CompilerServices.Unsafe.dll"},"Patterns":null},"System.Runtime.CompilerServices.VisualC.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.CompilerServices.VisualC.dll"},"Patterns":null},"System.Runtime.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Extensions.dll"},"Patterns":null},"System.Runtime.Handles.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Handles.dll"},"Patterns":null},"System.Runtime.InteropServices.RuntimeInformation.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.InteropServices.RuntimeInformation.dll"},"Patterns":null},"System.Runtime.InteropServices.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.InteropServices.dll"},"Patterns":null},"System.Runtime.Intrinsics.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Intrinsics.dll"},"Patterns":null},"System.Runtime.Loader.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Loader.dll"},"Patterns":null},"System.Runtime.Numerics.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Numerics.dll"},"Patterns":null},"System.Runtime.Serialization.Formatters.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Serialization.Formatters.dll"},"Patterns":null},"System.Runtime.Serialization.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Serialization.Json.dll"},"Patterns":null},"System.Runtime.Serialization.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Serialization.Primitives.dll"},"Patterns":null},"System.Runtime.Serialization.Xml.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Serialization.Xml.dll"},"Patterns":null},"System.Runtime.Serialization.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Serialization.dll"},"Patterns":null},"System.Runtime.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.dll"},"Patterns":null},"System.Security.AccessControl.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.AccessControl.dll"},"Patterns":null},"System.Security.Claims.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Claims.dll"},"Patterns":null},"System.Security.Cryptography.Algorithms.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Cryptography.Algorithms.dll"},"Patterns":null},"System.Security.Cryptography.Cng.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Cryptography.Cng.dll"},"Patterns":null},"System.Security.Cryptography.Csp.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Cryptography.Csp.dll"},"Patterns":null},"System.Security.Cryptography.Encoding.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Cryptography.Encoding.dll"},"Patterns":null},"System.Security.Cryptography.OpenSsl.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Cryptography.OpenSsl.dll"},"Patterns":null},"System.Security.Cryptography.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Cryptography.Primitives.dll"},"Patterns":null},"System.Security.Cryptography.X509Certificates.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Cryptography.X509Certificates.dll"},"Patterns":null},"System.Security.Principal.Windows.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Principal.Windows.dll"},"Patterns":null},"System.Security.Principal.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Principal.dll"},"Patterns":null},"System.Security.SecureString.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.SecureString.dll"},"Patterns":null},"System.Security.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.dll"},"Patterns":null},"System.ServiceModel.Web.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ServiceModel.Web.dll"},"Patterns":null},"System.ServiceProcess.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ServiceProcess.dll"},"Patterns":null},"System.Text.Encoding.CodePages.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Text.Encoding.CodePages.dll"},"Patterns":null},"System.Text.Encoding.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Text.Encoding.Extensions.dll"},"Patterns":null},"System.Text.Encoding.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Text.Encoding.dll"},"Patterns":null},"System.Text.Encodings.Web.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Text.Encodings.Web.dll"},"Patterns":null},"System.Text.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Text.Json.dll"},"Patterns":null},"System.Text.RegularExpressions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Text.RegularExpressions.dll"},"Patterns":null},"System.Threading.Channels.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Channels.dll"},"Patterns":null},"System.Threading.Overlapped.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Overlapped.dll"},"Patterns":null},"System.Threading.Tasks.Dataflow.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Tasks.Dataflow.dll"},"Patterns":null},"System.Threading.Tasks.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Tasks.Extensions.dll"},"Patterns":null},"System.Threading.Tasks.Parallel.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Tasks.Parallel.dll"},"Patterns":null},"System.Threading.Tasks.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Tasks.dll"},"Patterns":null},"System.Threading.Thread.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Thread.dll"},"Patterns":null},"System.Threading.ThreadPool.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.ThreadPool.dll"},"Patterns":null},"System.Threading.Timer.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Timer.dll"},"Patterns":null},"System.Threading.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.dll"},"Patterns":null},"System.Transactions.Local.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Transactions.Local.dll"},"Patterns":null},"System.Transactions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Transactions.dll"},"Patterns":null},"System.ValueTuple.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ValueTuple.dll"},"Patterns":null},"System.Web.HttpUtility.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Web.HttpUtility.dll"},"Patterns":null},"System.Web.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Web.dll"},"Patterns":null},"System.Windows.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Windows.dll"},"Patterns":null},"System.Xml.Linq.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.Linq.dll"},"Patterns":null},"System.Xml.ReaderWriter.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.ReaderWriter.dll"},"Patterns":null},"System.Xml.Serialization.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.Serialization.dll"},"Patterns":null},"System.Xml.XDocument.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.XDocument.dll"},"Patterns":null},"System.Xml.XPath.XDocument.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.XPath.XDocument.dll"},"Patterns":null},"System.Xml.XPath.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.XPath.dll"},"Patterns":null},"System.Xml.XmlDocument.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.XmlDocument.dll"},"Patterns":null},"System.Xml.XmlSerializer.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.XmlSerializer.dll"},"Patterns":null},"System.Xml.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.dll"},"Patterns":null},"System.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.dll"},"Patterns":null},"WindowsBase.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/WindowsBase.dll"},"Patterns":null},"mscorlib.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/mscorlib.dll"},"Patterns":null},"netstandard.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/netstandard.dll"},"Patterns":null},"System.Private.CoreLib.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Private.CoreLib.dll"},"Patterns":null},"dotnet.6.0.5.itaht6zf1c.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/dotnet.6.0.5.itaht6zf1c.js"},"Patterns":null},"dotnet.timezones.blat":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/dotnet.timezones.blat"},"Patterns":null},"dotnet.wasm":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/dotnet.wasm"},"Patterns":null},"icudt.dat":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/icudt.dat"},"Patterns":null},"icudt_CJK.dat":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/icudt_CJK.dat"},"Patterns":null},"icudt_EFIGS.dat":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/icudt_EFIGS.dat"},"Patterns":null},"icudt_no_CJK.dat":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/icudt_no_CJK.dat"},"Patterns":null},"CS_Todo.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/CS_Todo.dll"},"Patterns":null},"CS_Todo.pdb":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/CS_Todo.pdb"},"Patterns":null},"blazor.webassembly.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/blazor.webassembly.js"},"Patterns":null},"Microsoft.AspNetCore.Authorization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.AspNetCore.Authorization.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.AspNetCore.Components.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.Forms.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.AspNetCore.Components.Forms.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.Web.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.AspNetCore.Components.Web.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Metadata.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.AspNetCore.Metadata.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Configuration.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Binder.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Configuration.Binder.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.FileExtensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Configuration.Json.dll.gz"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.dll.gz"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.FileProviders.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.FileProviders.Physical.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz"},"Patterns":null},"Microsoft.Extensions.FileSystemGlobbing.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz"},"Patterns":null},"Microsoft.Extensions.Logging.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Logging.dll.gz"},"Patterns":null},"Microsoft.Extensions.Logging.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.Options.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Options.dll.gz"},"Patterns":null},"Microsoft.Extensions.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Primitives.dll.gz"},"Patterns":null},"Microsoft.JSInterop.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.JSInterop.dll.gz"},"Patterns":null},"Microsoft.JSInterop.WebAssembly.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.JSInterop.WebAssembly.dll.gz"},"Patterns":null},"System.IO.Pipelines.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.Pipelines.dll.gz"},"Patterns":null},"Microsoft.CSharp.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.CSharp.dll.gz"},"Patterns":null},"Microsoft.VisualBasic.Core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.VisualBasic.Core.dll.gz"},"Patterns":null},"Microsoft.VisualBasic.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.VisualBasic.dll.gz"},"Patterns":null},"Microsoft.Win32.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Win32.Primitives.dll.gz"},"Patterns":null},"Microsoft.Win32.Registry.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Win32.Registry.dll.gz"},"Patterns":null},"System.AppContext.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.AppContext.dll.gz"},"Patterns":null},"System.Buffers.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Buffers.dll.gz"},"Patterns":null},"System.Collections.Concurrent.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Collections.Concurrent.dll.gz"},"Patterns":null},"System.Collections.Immutable.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Collections.Immutable.dll.gz"},"Patterns":null},"System.Collections.NonGeneric.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Collections.NonGeneric.dll.gz"},"Patterns":null},"System.Collections.Specialized.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Collections.Specialized.dll.gz"},"Patterns":null},"System.Collections.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Collections.dll.gz"},"Patterns":null},"System.ComponentModel.Annotations.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ComponentModel.Annotations.dll.gz"},"Patterns":null},"System.ComponentModel.DataAnnotations.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ComponentModel.DataAnnotations.dll.gz"},"Patterns":null},"System.ComponentModel.EventBasedAsync.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ComponentModel.EventBasedAsync.dll.gz"},"Patterns":null},"System.ComponentModel.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ComponentModel.Primitives.dll.gz"},"Patterns":null},"System.ComponentModel.TypeConverter.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ComponentModel.TypeConverter.dll.gz"},"Patterns":null},"System.ComponentModel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ComponentModel.dll.gz"},"Patterns":null},"System.Configuration.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Configuration.dll.gz"},"Patterns":null},"System.Console.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Console.dll.gz"},"Patterns":null},"System.Core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Core.dll.gz"},"Patterns":null},"System.Data.Common.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Data.Common.dll.gz"},"Patterns":null},"System.Data.DataSetExtensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Data.DataSetExtensions.dll.gz"},"Patterns":null},"System.Data.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Data.dll.gz"},"Patterns":null},"System.Diagnostics.Contracts.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.Contracts.dll.gz"},"Patterns":null},"System.Diagnostics.Debug.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.Debug.dll.gz"},"Patterns":null},"System.Diagnostics.DiagnosticSource.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.DiagnosticSource.dll.gz"},"Patterns":null},"System.Diagnostics.FileVersionInfo.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.FileVersionInfo.dll.gz"},"Patterns":null},"System.Diagnostics.Process.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.Process.dll.gz"},"Patterns":null},"System.Diagnostics.StackTrace.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.StackTrace.dll.gz"},"Patterns":null},"System.Diagnostics.TextWriterTraceListener.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.TextWriterTraceListener.dll.gz"},"Patterns":null},"System.Diagnostics.Tools.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.Tools.dll.gz"},"Patterns":null},"System.Diagnostics.TraceSource.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.TraceSource.dll.gz"},"Patterns":null},"System.Diagnostics.Tracing.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.Tracing.dll.gz"},"Patterns":null},"System.Drawing.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Drawing.Primitives.dll.gz"},"Patterns":null},"System.Drawing.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Drawing.dll.gz"},"Patterns":null},"System.Dynamic.Runtime.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Dynamic.Runtime.dll.gz"},"Patterns":null},"System.Formats.Asn1.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Formats.Asn1.dll.gz"},"Patterns":null},"System.Globalization.Calendars.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Globalization.Calendars.dll.gz"},"Patterns":null},"System.Globalization.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Globalization.Extensions.dll.gz"},"Patterns":null},"System.Globalization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Globalization.dll.gz"},"Patterns":null},"System.IO.Compression.Brotli.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.Compression.Brotli.dll.gz"},"Patterns":null},"System.IO.Compression.FileSystem.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.Compression.FileSystem.dll.gz"},"Patterns":null},"System.IO.Compression.ZipFile.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.Compression.ZipFile.dll.gz"},"Patterns":null},"System.IO.Compression.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.Compression.dll.gz"},"Patterns":null},"System.IO.FileSystem.AccessControl.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.FileSystem.AccessControl.dll.gz"},"Patterns":null},"System.IO.FileSystem.DriveInfo.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.FileSystem.DriveInfo.dll.gz"},"Patterns":null},"System.IO.FileSystem.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.FileSystem.Primitives.dll.gz"},"Patterns":null},"System.IO.FileSystem.Watcher.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.FileSystem.Watcher.dll.gz"},"Patterns":null},"System.IO.FileSystem.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.FileSystem.dll.gz"},"Patterns":null},"System.IO.IsolatedStorage.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.IsolatedStorage.dll.gz"},"Patterns":null},"System.IO.MemoryMappedFiles.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.MemoryMappedFiles.dll.gz"},"Patterns":null},"System.IO.Pipes.AccessControl.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.Pipes.AccessControl.dll.gz"},"Patterns":null},"System.IO.Pipes.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.Pipes.dll.gz"},"Patterns":null},"System.IO.UnmanagedMemoryStream.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.UnmanagedMemoryStream.dll.gz"},"Patterns":null},"System.IO.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.dll.gz"},"Patterns":null},"System.Linq.Expressions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Linq.Expressions.dll.gz"},"Patterns":null},"System.Linq.Parallel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Linq.Parallel.dll.gz"},"Patterns":null},"System.Linq.Queryable.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Linq.Queryable.dll.gz"},"Patterns":null},"System.Linq.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Linq.dll.gz"},"Patterns":null},"System.Memory.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Memory.dll.gz"},"Patterns":null},"System.Net.Http.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Http.Json.dll.gz"},"Patterns":null},"System.Net.Http.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Http.dll.gz"},"Patterns":null},"System.Net.HttpListener.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.HttpListener.dll.gz"},"Patterns":null},"System.Net.Mail.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Mail.dll.gz"},"Patterns":null},"System.Net.NameResolution.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.NameResolution.dll.gz"},"Patterns":null},"System.Net.NetworkInformation.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.NetworkInformation.dll.gz"},"Patterns":null},"System.Net.Ping.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Ping.dll.gz"},"Patterns":null},"System.Net.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Primitives.dll.gz"},"Patterns":null},"System.Net.Quic.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Quic.dll.gz"},"Patterns":null},"System.Net.Requests.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Requests.dll.gz"},"Patterns":null},"System.Net.Security.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Security.dll.gz"},"Patterns":null},"System.Net.ServicePoint.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.ServicePoint.dll.gz"},"Patterns":null},"System.Net.Sockets.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Sockets.dll.gz"},"Patterns":null},"System.Net.WebClient.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.WebClient.dll.gz"},"Patterns":null},"System.Net.WebHeaderCollection.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.WebHeaderCollection.dll.gz"},"Patterns":null},"System.Net.WebProxy.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.WebProxy.dll.gz"},"Patterns":null},"System.Net.WebSockets.Client.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.WebSockets.Client.dll.gz"},"Patterns":null},"System.Net.WebSockets.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.WebSockets.dll.gz"},"Patterns":null},"System.Net.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.dll.gz"},"Patterns":null},"System.Numerics.Vectors.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Numerics.Vectors.dll.gz"},"Patterns":null},"System.Numerics.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Numerics.dll.gz"},"Patterns":null},"System.ObjectModel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ObjectModel.dll.gz"},"Patterns":null},"System.Private.DataContractSerialization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Private.DataContractSerialization.dll.gz"},"Patterns":null},"System.Private.Runtime.InteropServices.JavaScript.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz"},"Patterns":null},"System.Private.Uri.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Private.Uri.dll.gz"},"Patterns":null},"System.Private.Xml.Linq.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Private.Xml.Linq.dll.gz"},"Patterns":null},"System.Private.Xml.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Private.Xml.dll.gz"},"Patterns":null},"System.Reflection.DispatchProxy.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.DispatchProxy.dll.gz"},"Patterns":null},"System.Reflection.Emit.ILGeneration.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.Emit.ILGeneration.dll.gz"},"Patterns":null},"System.Reflection.Emit.Lightweight.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.Emit.Lightweight.dll.gz"},"Patterns":null},"System.Reflection.Emit.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.Emit.dll.gz"},"Patterns":null},"System.Reflection.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.Extensions.dll.gz"},"Patterns":null},"System.Reflection.Metadata.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.Metadata.dll.gz"},"Patterns":null},"System.Reflection.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.Primitives.dll.gz"},"Patterns":null},"System.Reflection.TypeExtensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.TypeExtensions.dll.gz"},"Patterns":null},"System.Reflection.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.dll.gz"},"Patterns":null},"System.Resources.Reader.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Resources.Reader.dll.gz"},"Patterns":null},"System.Resources.ResourceManager.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Resources.ResourceManager.dll.gz"},"Patterns":null},"System.Resources.Writer.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Resources.Writer.dll.gz"},"Patterns":null},"System.Runtime.CompilerServices.Unsafe.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.CompilerServices.Unsafe.dll.gz"},"Patterns":null},"System.Runtime.CompilerServices.VisualC.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.CompilerServices.VisualC.dll.gz"},"Patterns":null},"System.Runtime.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Extensions.dll.gz"},"Patterns":null},"System.Runtime.Handles.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Handles.dll.gz"},"Patterns":null},"System.Runtime.InteropServices.RuntimeInformation.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz"},"Patterns":null},"System.Runtime.InteropServices.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.InteropServices.dll.gz"},"Patterns":null},"System.Runtime.Intrinsics.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Intrinsics.dll.gz"},"Patterns":null},"System.Runtime.Loader.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Loader.dll.gz"},"Patterns":null},"System.Runtime.Numerics.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Numerics.dll.gz"},"Patterns":null},"System.Runtime.Serialization.Formatters.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Serialization.Formatters.dll.gz"},"Patterns":null},"System.Runtime.Serialization.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Serialization.Json.dll.gz"},"Patterns":null},"System.Runtime.Serialization.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Serialization.Primitives.dll.gz"},"Patterns":null},"System.Runtime.Serialization.Xml.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Serialization.Xml.dll.gz"},"Patterns":null},"System.Runtime.Serialization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Serialization.dll.gz"},"Patterns":null},"System.Runtime.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.dll.gz"},"Patterns":null},"System.Security.AccessControl.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.AccessControl.dll.gz"},"Patterns":null},"System.Security.Claims.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Claims.dll.gz"},"Patterns":null},"System.Security.Cryptography.Algorithms.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Cryptography.Algorithms.dll.gz"},"Patterns":null},"System.Security.Cryptography.Cng.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Cryptography.Cng.dll.gz"},"Patterns":null},"System.Security.Cryptography.Csp.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Cryptography.Csp.dll.gz"},"Patterns":null},"System.Security.Cryptography.Encoding.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Cryptography.Encoding.dll.gz"},"Patterns":null},"System.Security.Cryptography.OpenSsl.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Cryptography.OpenSsl.dll.gz"},"Patterns":null},"System.Security.Cryptography.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Cryptography.Primitives.dll.gz"},"Patterns":null},"System.Security.Cryptography.X509Certificates.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Cryptography.X509Certificates.dll.gz"},"Patterns":null},"System.Security.Principal.Windows.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Principal.Windows.dll.gz"},"Patterns":null},"System.Security.Principal.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Principal.dll.gz"},"Patterns":null},"System.Security.SecureString.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.SecureString.dll.gz"},"Patterns":null},"System.Security.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.dll.gz"},"Patterns":null},"System.ServiceModel.Web.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ServiceModel.Web.dll.gz"},"Patterns":null},"System.ServiceProcess.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ServiceProcess.dll.gz"},"Patterns":null},"System.Text.Encoding.CodePages.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Text.Encoding.CodePages.dll.gz"},"Patterns":null},"System.Text.Encoding.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Text.Encoding.Extensions.dll.gz"},"Patterns":null},"System.Text.Encoding.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Text.Encoding.dll.gz"},"Patterns":null},"System.Text.Encodings.Web.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Text.Encodings.Web.dll.gz"},"Patterns":null},"System.Text.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Text.Json.dll.gz"},"Patterns":null},"System.Text.RegularExpressions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Text.RegularExpressions.dll.gz"},"Patterns":null},"System.Threading.Channels.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Channels.dll.gz"},"Patterns":null},"System.Threading.Overlapped.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Overlapped.dll.gz"},"Patterns":null},"System.Threading.Tasks.Dataflow.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Tasks.Dataflow.dll.gz"},"Patterns":null},"System.Threading.Tasks.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Tasks.Extensions.dll.gz"},"Patterns":null},"System.Threading.Tasks.Parallel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Tasks.Parallel.dll.gz"},"Patterns":null},"System.Threading.Tasks.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Tasks.dll.gz"},"Patterns":null},"System.Threading.Thread.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Thread.dll.gz"},"Patterns":null},"System.Threading.ThreadPool.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.ThreadPool.dll.gz"},"Patterns":null},"System.Threading.Timer.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Timer.dll.gz"},"Patterns":null},"System.Threading.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.dll.gz"},"Patterns":null},"System.Transactions.Local.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Transactions.Local.dll.gz"},"Patterns":null},"System.Transactions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Transactions.dll.gz"},"Patterns":null},"System.ValueTuple.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ValueTuple.dll.gz"},"Patterns":null},"System.Web.HttpUtility.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Web.HttpUtility.dll.gz"},"Patterns":null},"System.Web.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Web.dll.gz"},"Patterns":null},"System.Windows.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Windows.dll.gz"},"Patterns":null},"System.Xml.Linq.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.Linq.dll.gz"},"Patterns":null},"System.Xml.ReaderWriter.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.ReaderWriter.dll.gz"},"Patterns":null},"System.Xml.Serialization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.Serialization.dll.gz"},"Patterns":null},"System.Xml.XDocument.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.XDocument.dll.gz"},"Patterns":null},"System.Xml.XPath.XDocument.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.XPath.XDocument.dll.gz"},"Patterns":null},"System.Xml.XPath.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.XPath.dll.gz"},"Patterns":null},"System.Xml.XmlDocument.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.XmlDocument.dll.gz"},"Patterns":null},"System.Xml.XmlSerializer.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.XmlSerializer.dll.gz"},"Patterns":null},"System.Xml.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.dll.gz"},"Patterns":null},"System.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.dll.gz"},"Patterns":null},"WindowsBase.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/WindowsBase.dll.gz"},"Patterns":null},"mscorlib.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/mscorlib.dll.gz"},"Patterns":null},"netstandard.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/netstandard.dll.gz"},"Patterns":null},"System.Private.CoreLib.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Private.CoreLib.dll.gz"},"Patterns":null},"dotnet.6.0.5.itaht6zf1c.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/dotnet.6.0.5.itaht6zf1c.js.gz"},"Patterns":null},"dotnet.timezones.blat.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/dotnet.timezones.blat.gz"},"Patterns":null},"dotnet.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/dotnet.wasm.gz"},"Patterns":null},"icudt.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/icudt.dat.gz"},"Patterns":null},"icudt_CJK.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/icudt_CJK.dat.gz"},"Patterns":null},"icudt_EFIGS.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/icudt_EFIGS.dat.gz"},"Patterns":null},"icudt_no_CJK.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/icudt_no_CJK.dat.gz"},"Patterns":null},"CS_Todo.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/CS_Todo.dll.gz"},"Patterns":null},"CS_Todo.pdb.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/CS_Todo.pdb.gz"},"Patterns":null},"blazor.webassembly.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/blazor.webassembly.js.gz"},"Patterns":null},"blazor.boot.json":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/blazor.boot.json"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Authorization.dll b/CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Authorization.dll new file mode 100755 index 00000000..2d1d1aa9 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Authorization.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Forms.dll b/CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Forms.dll new file mode 100755 index 00000000..ccab853e Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Forms.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Web.dll b/CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Web.dll new file mode 100755 index 00000000..6ddeb7d3 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Web.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Components.WebAssembly.dll b/CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Components.WebAssembly.dll new file mode 100755 index 00000000..520fece8 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Components.WebAssembly.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Components.dll b/CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Components.dll new file mode 100755 index 00000000..4de3ceef Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Components.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Metadata.dll b/CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Metadata.dll new file mode 100755 index 00000000..200aa169 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Metadata.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/Microsoft.CSharp.dll b/CS_Todo/bin/Debug/net6.0/Microsoft.CSharp.dll new file mode 100755 index 00000000..40125d10 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/Microsoft.CSharp.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll b/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll new file mode 100755 index 00000000..9a24516f Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Binder.dll b/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Binder.dll new file mode 100755 index 00000000..845cab83 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Binder.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.FileExtensions.dll b/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.FileExtensions.dll new file mode 100755 index 00000000..160814d3 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.FileExtensions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Json.dll b/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Json.dll new file mode 100755 index 00000000..1c9ba240 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Json.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.dll b/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.dll new file mode 100755 index 00000000..4c0a93b3 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100755 index 00000000..b4ee93da Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll b/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll new file mode 100755 index 00000000..97525f7e Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll b/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll new file mode 100755 index 00000000..d1045b65 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.FileProviders.Physical.dll b/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.FileProviders.Physical.dll new file mode 100755 index 00000000..e712dbe6 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.FileProviders.Physical.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll b/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll new file mode 100755 index 00000000..61c4e0c5 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll b/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100755 index 00000000..a42ea834 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll b/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll new file mode 100755 index 00000000..9e2d7f94 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Options.dll b/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Options.dll new file mode 100755 index 00000000..604b6027 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Options.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll b/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll new file mode 100755 index 00000000..1b2c43af Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/Microsoft.JSInterop.WebAssembly.dll b/CS_Todo/bin/Debug/net6.0/Microsoft.JSInterop.WebAssembly.dll new file mode 100755 index 00000000..8f7cb0ee Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/Microsoft.JSInterop.WebAssembly.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/Microsoft.JSInterop.dll b/CS_Todo/bin/Debug/net6.0/Microsoft.JSInterop.dll new file mode 100755 index 00000000..5becf97c Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/Microsoft.JSInterop.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/Microsoft.VisualBasic.Core.dll b/CS_Todo/bin/Debug/net6.0/Microsoft.VisualBasic.Core.dll new file mode 100755 index 00000000..7fab9184 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/Microsoft.VisualBasic.Core.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/Microsoft.VisualBasic.dll b/CS_Todo/bin/Debug/net6.0/Microsoft.VisualBasic.dll new file mode 100755 index 00000000..b4b60b63 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/Microsoft.VisualBasic.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/Microsoft.Win32.Primitives.dll b/CS_Todo/bin/Debug/net6.0/Microsoft.Win32.Primitives.dll new file mode 100755 index 00000000..b01a303c Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/Microsoft.Win32.Primitives.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/Microsoft.Win32.Registry.dll b/CS_Todo/bin/Debug/net6.0/Microsoft.Win32.Registry.dll new file mode 100755 index 00000000..59e12490 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/Microsoft.Win32.Registry.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.AppContext.dll b/CS_Todo/bin/Debug/net6.0/System.AppContext.dll new file mode 100755 index 00000000..4dfdfaf6 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.AppContext.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Buffers.dll b/CS_Todo/bin/Debug/net6.0/System.Buffers.dll new file mode 100755 index 00000000..0705314b Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Buffers.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Collections.Concurrent.dll b/CS_Todo/bin/Debug/net6.0/System.Collections.Concurrent.dll new file mode 100755 index 00000000..94cbbc5e Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Collections.Concurrent.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Collections.Immutable.dll b/CS_Todo/bin/Debug/net6.0/System.Collections.Immutable.dll new file mode 100755 index 00000000..6b4e83b1 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Collections.Immutable.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Collections.NonGeneric.dll b/CS_Todo/bin/Debug/net6.0/System.Collections.NonGeneric.dll new file mode 100755 index 00000000..5f9da539 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Collections.NonGeneric.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Collections.Specialized.dll b/CS_Todo/bin/Debug/net6.0/System.Collections.Specialized.dll new file mode 100755 index 00000000..acf3437f Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Collections.Specialized.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Collections.dll b/CS_Todo/bin/Debug/net6.0/System.Collections.dll new file mode 100755 index 00000000..9529c1b7 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Collections.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.ComponentModel.Annotations.dll b/CS_Todo/bin/Debug/net6.0/System.ComponentModel.Annotations.dll new file mode 100755 index 00000000..c724a4e6 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.ComponentModel.Annotations.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.ComponentModel.DataAnnotations.dll b/CS_Todo/bin/Debug/net6.0/System.ComponentModel.DataAnnotations.dll new file mode 100755 index 00000000..8c0e572f Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.ComponentModel.DataAnnotations.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.ComponentModel.EventBasedAsync.dll b/CS_Todo/bin/Debug/net6.0/System.ComponentModel.EventBasedAsync.dll new file mode 100755 index 00000000..c1a68177 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.ComponentModel.EventBasedAsync.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.ComponentModel.Primitives.dll b/CS_Todo/bin/Debug/net6.0/System.ComponentModel.Primitives.dll new file mode 100755 index 00000000..afa5a0a9 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.ComponentModel.Primitives.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.ComponentModel.TypeConverter.dll b/CS_Todo/bin/Debug/net6.0/System.ComponentModel.TypeConverter.dll new file mode 100755 index 00000000..086d55a1 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.ComponentModel.TypeConverter.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.ComponentModel.dll b/CS_Todo/bin/Debug/net6.0/System.ComponentModel.dll new file mode 100755 index 00000000..66bd45f6 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.ComponentModel.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Configuration.dll b/CS_Todo/bin/Debug/net6.0/System.Configuration.dll new file mode 100755 index 00000000..a4f53793 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Configuration.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Console.dll b/CS_Todo/bin/Debug/net6.0/System.Console.dll new file mode 100755 index 00000000..4d8d9de8 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Console.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Core.dll b/CS_Todo/bin/Debug/net6.0/System.Core.dll new file mode 100755 index 00000000..df8460ab Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Core.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Data.Common.dll b/CS_Todo/bin/Debug/net6.0/System.Data.Common.dll new file mode 100755 index 00000000..b08accee Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Data.Common.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Data.DataSetExtensions.dll b/CS_Todo/bin/Debug/net6.0/System.Data.DataSetExtensions.dll new file mode 100755 index 00000000..a74d4798 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Data.DataSetExtensions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Data.dll b/CS_Todo/bin/Debug/net6.0/System.Data.dll new file mode 100755 index 00000000..3fc33343 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Data.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Diagnostics.Contracts.dll b/CS_Todo/bin/Debug/net6.0/System.Diagnostics.Contracts.dll new file mode 100755 index 00000000..6d111bfd Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Diagnostics.Contracts.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Diagnostics.Debug.dll b/CS_Todo/bin/Debug/net6.0/System.Diagnostics.Debug.dll new file mode 100755 index 00000000..2af45f9f Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Diagnostics.Debug.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Diagnostics.DiagnosticSource.dll b/CS_Todo/bin/Debug/net6.0/System.Diagnostics.DiagnosticSource.dll new file mode 100755 index 00000000..c0173764 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Diagnostics.DiagnosticSource.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Diagnostics.FileVersionInfo.dll b/CS_Todo/bin/Debug/net6.0/System.Diagnostics.FileVersionInfo.dll new file mode 100755 index 00000000..32193ef1 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Diagnostics.FileVersionInfo.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Diagnostics.Process.dll b/CS_Todo/bin/Debug/net6.0/System.Diagnostics.Process.dll new file mode 100755 index 00000000..6fac1f54 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Diagnostics.Process.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Diagnostics.StackTrace.dll b/CS_Todo/bin/Debug/net6.0/System.Diagnostics.StackTrace.dll new file mode 100755 index 00000000..1ce30c80 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Diagnostics.StackTrace.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Diagnostics.TextWriterTraceListener.dll b/CS_Todo/bin/Debug/net6.0/System.Diagnostics.TextWriterTraceListener.dll new file mode 100755 index 00000000..b446d742 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Diagnostics.Tools.dll b/CS_Todo/bin/Debug/net6.0/System.Diagnostics.Tools.dll new file mode 100755 index 00000000..b9904507 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Diagnostics.Tools.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Diagnostics.TraceSource.dll b/CS_Todo/bin/Debug/net6.0/System.Diagnostics.TraceSource.dll new file mode 100755 index 00000000..0e62c27e Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Diagnostics.TraceSource.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Diagnostics.Tracing.dll b/CS_Todo/bin/Debug/net6.0/System.Diagnostics.Tracing.dll new file mode 100755 index 00000000..979fb1d0 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Diagnostics.Tracing.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Drawing.Primitives.dll b/CS_Todo/bin/Debug/net6.0/System.Drawing.Primitives.dll new file mode 100755 index 00000000..f2e8ec09 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Drawing.Primitives.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Drawing.dll b/CS_Todo/bin/Debug/net6.0/System.Drawing.dll new file mode 100755 index 00000000..6cba180d Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Drawing.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Dynamic.Runtime.dll b/CS_Todo/bin/Debug/net6.0/System.Dynamic.Runtime.dll new file mode 100755 index 00000000..e64f6d39 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Dynamic.Runtime.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Formats.Asn1.dll b/CS_Todo/bin/Debug/net6.0/System.Formats.Asn1.dll new file mode 100755 index 00000000..f2ce8bdc Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Formats.Asn1.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Globalization.Calendars.dll b/CS_Todo/bin/Debug/net6.0/System.Globalization.Calendars.dll new file mode 100755 index 00000000..9f9cf207 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Globalization.Calendars.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Globalization.Extensions.dll b/CS_Todo/bin/Debug/net6.0/System.Globalization.Extensions.dll new file mode 100755 index 00000000..be1ef2ee Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Globalization.Extensions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Globalization.dll b/CS_Todo/bin/Debug/net6.0/System.Globalization.dll new file mode 100755 index 00000000..1c619543 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Globalization.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.IO.Compression.Brotli.dll b/CS_Todo/bin/Debug/net6.0/System.IO.Compression.Brotli.dll new file mode 100755 index 00000000..683da1ef Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.IO.Compression.Brotli.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.IO.Compression.FileSystem.dll b/CS_Todo/bin/Debug/net6.0/System.IO.Compression.FileSystem.dll new file mode 100755 index 00000000..8dded155 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.IO.Compression.FileSystem.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.IO.Compression.ZipFile.dll b/CS_Todo/bin/Debug/net6.0/System.IO.Compression.ZipFile.dll new file mode 100755 index 00000000..f04830e2 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.IO.Compression.ZipFile.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.IO.Compression.dll b/CS_Todo/bin/Debug/net6.0/System.IO.Compression.dll new file mode 100755 index 00000000..fd8050bb Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.IO.Compression.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.AccessControl.dll b/CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.AccessControl.dll new file mode 100755 index 00000000..11631493 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.AccessControl.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.DriveInfo.dll b/CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.DriveInfo.dll new file mode 100755 index 00000000..d999e811 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.DriveInfo.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.Primitives.dll b/CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.Primitives.dll new file mode 100755 index 00000000..5b0c077b Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.Primitives.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.Watcher.dll b/CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.Watcher.dll new file mode 100755 index 00000000..1bcac7b7 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.Watcher.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.dll b/CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.dll new file mode 100755 index 00000000..f784b9b3 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.IO.IsolatedStorage.dll b/CS_Todo/bin/Debug/net6.0/System.IO.IsolatedStorage.dll new file mode 100755 index 00000000..ea373a59 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.IO.IsolatedStorage.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.IO.MemoryMappedFiles.dll b/CS_Todo/bin/Debug/net6.0/System.IO.MemoryMappedFiles.dll new file mode 100755 index 00000000..d3cfdf94 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.IO.MemoryMappedFiles.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.IO.Pipelines.dll b/CS_Todo/bin/Debug/net6.0/System.IO.Pipelines.dll new file mode 100755 index 00000000..8ee4dfdd Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.IO.Pipelines.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.IO.Pipes.AccessControl.dll b/CS_Todo/bin/Debug/net6.0/System.IO.Pipes.AccessControl.dll new file mode 100755 index 00000000..e9427b31 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.IO.Pipes.AccessControl.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.IO.Pipes.dll b/CS_Todo/bin/Debug/net6.0/System.IO.Pipes.dll new file mode 100755 index 00000000..c93057b8 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.IO.Pipes.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.IO.UnmanagedMemoryStream.dll b/CS_Todo/bin/Debug/net6.0/System.IO.UnmanagedMemoryStream.dll new file mode 100755 index 00000000..384f4c01 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.IO.UnmanagedMemoryStream.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.IO.dll b/CS_Todo/bin/Debug/net6.0/System.IO.dll new file mode 100755 index 00000000..0ae6e386 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.IO.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Linq.Expressions.dll b/CS_Todo/bin/Debug/net6.0/System.Linq.Expressions.dll new file mode 100755 index 00000000..6ca64c8f Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Linq.Expressions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Linq.Parallel.dll b/CS_Todo/bin/Debug/net6.0/System.Linq.Parallel.dll new file mode 100755 index 00000000..f82c11ea Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Linq.Parallel.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Linq.Queryable.dll b/CS_Todo/bin/Debug/net6.0/System.Linq.Queryable.dll new file mode 100755 index 00000000..a27494c5 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Linq.Queryable.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Linq.dll b/CS_Todo/bin/Debug/net6.0/System.Linq.dll new file mode 100755 index 00000000..715294e3 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Linq.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Memory.dll b/CS_Todo/bin/Debug/net6.0/System.Memory.dll new file mode 100755 index 00000000..dff7c3c8 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Memory.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Net.Http.Json.dll b/CS_Todo/bin/Debug/net6.0/System.Net.Http.Json.dll new file mode 100755 index 00000000..f32a9103 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Net.Http.Json.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Net.Http.dll b/CS_Todo/bin/Debug/net6.0/System.Net.Http.dll new file mode 100755 index 00000000..4265f2e3 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Net.Http.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Net.HttpListener.dll b/CS_Todo/bin/Debug/net6.0/System.Net.HttpListener.dll new file mode 100755 index 00000000..06d0985a Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Net.HttpListener.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Net.Mail.dll b/CS_Todo/bin/Debug/net6.0/System.Net.Mail.dll new file mode 100755 index 00000000..b63a065a Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Net.Mail.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Net.NameResolution.dll b/CS_Todo/bin/Debug/net6.0/System.Net.NameResolution.dll new file mode 100755 index 00000000..526eb2a2 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Net.NameResolution.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Net.NetworkInformation.dll b/CS_Todo/bin/Debug/net6.0/System.Net.NetworkInformation.dll new file mode 100755 index 00000000..40b4b322 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Net.NetworkInformation.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Net.Ping.dll b/CS_Todo/bin/Debug/net6.0/System.Net.Ping.dll new file mode 100755 index 00000000..29d7df5e Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Net.Ping.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Net.Primitives.dll b/CS_Todo/bin/Debug/net6.0/System.Net.Primitives.dll new file mode 100755 index 00000000..a54232f6 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Net.Primitives.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Net.Quic.dll b/CS_Todo/bin/Debug/net6.0/System.Net.Quic.dll new file mode 100755 index 00000000..f1b917fb Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Net.Quic.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Net.Requests.dll b/CS_Todo/bin/Debug/net6.0/System.Net.Requests.dll new file mode 100755 index 00000000..df1ff401 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Net.Requests.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Net.Security.dll b/CS_Todo/bin/Debug/net6.0/System.Net.Security.dll new file mode 100755 index 00000000..06ee3d73 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Net.Security.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Net.ServicePoint.dll b/CS_Todo/bin/Debug/net6.0/System.Net.ServicePoint.dll new file mode 100755 index 00000000..c47f3c40 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Net.ServicePoint.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Net.Sockets.dll b/CS_Todo/bin/Debug/net6.0/System.Net.Sockets.dll new file mode 100755 index 00000000..da058b49 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Net.Sockets.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Net.WebClient.dll b/CS_Todo/bin/Debug/net6.0/System.Net.WebClient.dll new file mode 100755 index 00000000..0b1f9a08 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Net.WebClient.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Net.WebHeaderCollection.dll b/CS_Todo/bin/Debug/net6.0/System.Net.WebHeaderCollection.dll new file mode 100755 index 00000000..db058066 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Net.WebHeaderCollection.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Net.WebProxy.dll b/CS_Todo/bin/Debug/net6.0/System.Net.WebProxy.dll new file mode 100755 index 00000000..57bf252a Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Net.WebProxy.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Net.WebSockets.Client.dll b/CS_Todo/bin/Debug/net6.0/System.Net.WebSockets.Client.dll new file mode 100755 index 00000000..38d33aaf Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Net.WebSockets.Client.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Net.WebSockets.dll b/CS_Todo/bin/Debug/net6.0/System.Net.WebSockets.dll new file mode 100755 index 00000000..311578ea Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Net.WebSockets.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Net.dll b/CS_Todo/bin/Debug/net6.0/System.Net.dll new file mode 100755 index 00000000..3d939f7a Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Net.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Numerics.Vectors.dll b/CS_Todo/bin/Debug/net6.0/System.Numerics.Vectors.dll new file mode 100755 index 00000000..56c995e2 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Numerics.Vectors.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Numerics.dll b/CS_Todo/bin/Debug/net6.0/System.Numerics.dll new file mode 100755 index 00000000..eb57a751 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Numerics.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.ObjectModel.dll b/CS_Todo/bin/Debug/net6.0/System.ObjectModel.dll new file mode 100755 index 00000000..67780c7f Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.ObjectModel.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Private.CoreLib.dll b/CS_Todo/bin/Debug/net6.0/System.Private.CoreLib.dll new file mode 100755 index 00000000..ad52c81b Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Private.CoreLib.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Private.DataContractSerialization.dll b/CS_Todo/bin/Debug/net6.0/System.Private.DataContractSerialization.dll new file mode 100755 index 00000000..a4d8d18f Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Private.DataContractSerialization.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Private.Runtime.InteropServices.JavaScript.dll b/CS_Todo/bin/Debug/net6.0/System.Private.Runtime.InteropServices.JavaScript.dll new file mode 100755 index 00000000..c2268b22 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Private.Runtime.InteropServices.JavaScript.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Private.Uri.dll b/CS_Todo/bin/Debug/net6.0/System.Private.Uri.dll new file mode 100755 index 00000000..8925df94 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Private.Uri.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Private.Xml.Linq.dll b/CS_Todo/bin/Debug/net6.0/System.Private.Xml.Linq.dll new file mode 100755 index 00000000..a120a105 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Private.Xml.Linq.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Private.Xml.dll b/CS_Todo/bin/Debug/net6.0/System.Private.Xml.dll new file mode 100755 index 00000000..4f45af12 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Private.Xml.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Reflection.DispatchProxy.dll b/CS_Todo/bin/Debug/net6.0/System.Reflection.DispatchProxy.dll new file mode 100755 index 00000000..8811dc05 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Reflection.DispatchProxy.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Reflection.Emit.ILGeneration.dll b/CS_Todo/bin/Debug/net6.0/System.Reflection.Emit.ILGeneration.dll new file mode 100755 index 00000000..8c13ad83 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Reflection.Emit.ILGeneration.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Reflection.Emit.Lightweight.dll b/CS_Todo/bin/Debug/net6.0/System.Reflection.Emit.Lightweight.dll new file mode 100755 index 00000000..0cbf7719 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Reflection.Emit.Lightweight.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Reflection.Emit.dll b/CS_Todo/bin/Debug/net6.0/System.Reflection.Emit.dll new file mode 100755 index 00000000..0deeaa78 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Reflection.Emit.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Reflection.Extensions.dll b/CS_Todo/bin/Debug/net6.0/System.Reflection.Extensions.dll new file mode 100755 index 00000000..9495e4c3 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Reflection.Extensions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Reflection.Metadata.dll b/CS_Todo/bin/Debug/net6.0/System.Reflection.Metadata.dll new file mode 100755 index 00000000..d2e1ecde Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Reflection.Metadata.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Reflection.Primitives.dll b/CS_Todo/bin/Debug/net6.0/System.Reflection.Primitives.dll new file mode 100755 index 00000000..55d17cf2 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Reflection.Primitives.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Reflection.TypeExtensions.dll b/CS_Todo/bin/Debug/net6.0/System.Reflection.TypeExtensions.dll new file mode 100755 index 00000000..50c39743 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Reflection.TypeExtensions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Reflection.dll b/CS_Todo/bin/Debug/net6.0/System.Reflection.dll new file mode 100755 index 00000000..e6d36db1 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Reflection.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Resources.Reader.dll b/CS_Todo/bin/Debug/net6.0/System.Resources.Reader.dll new file mode 100755 index 00000000..d1fab422 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Resources.Reader.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Resources.ResourceManager.dll b/CS_Todo/bin/Debug/net6.0/System.Resources.ResourceManager.dll new file mode 100755 index 00000000..a718fd32 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Resources.ResourceManager.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Resources.Writer.dll b/CS_Todo/bin/Debug/net6.0/System.Resources.Writer.dll new file mode 100755 index 00000000..1b492cb2 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Resources.Writer.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Runtime.CompilerServices.Unsafe.dll b/CS_Todo/bin/Debug/net6.0/System.Runtime.CompilerServices.Unsafe.dll new file mode 100755 index 00000000..09c3366d Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Runtime.CompilerServices.VisualC.dll b/CS_Todo/bin/Debug/net6.0/System.Runtime.CompilerServices.VisualC.dll new file mode 100755 index 00000000..85eeb968 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Runtime.Extensions.dll b/CS_Todo/bin/Debug/net6.0/System.Runtime.Extensions.dll new file mode 100755 index 00000000..a35ead04 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Runtime.Extensions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Runtime.Handles.dll b/CS_Todo/bin/Debug/net6.0/System.Runtime.Handles.dll new file mode 100755 index 00000000..94670025 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Runtime.Handles.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Runtime.InteropServices.RuntimeInformation.dll b/CS_Todo/bin/Debug/net6.0/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100755 index 00000000..6598801d Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Runtime.InteropServices.dll b/CS_Todo/bin/Debug/net6.0/System.Runtime.InteropServices.dll new file mode 100755 index 00000000..a9dc580c Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Runtime.InteropServices.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Runtime.Intrinsics.dll b/CS_Todo/bin/Debug/net6.0/System.Runtime.Intrinsics.dll new file mode 100755 index 00000000..220fd3dc Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Runtime.Intrinsics.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Runtime.Loader.dll b/CS_Todo/bin/Debug/net6.0/System.Runtime.Loader.dll new file mode 100755 index 00000000..43baf4b7 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Runtime.Loader.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Runtime.Numerics.dll b/CS_Todo/bin/Debug/net6.0/System.Runtime.Numerics.dll new file mode 100755 index 00000000..10e4b4d0 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Runtime.Numerics.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Runtime.Serialization.Formatters.dll b/CS_Todo/bin/Debug/net6.0/System.Runtime.Serialization.Formatters.dll new file mode 100755 index 00000000..0dac79c0 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Runtime.Serialization.Formatters.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Runtime.Serialization.Json.dll b/CS_Todo/bin/Debug/net6.0/System.Runtime.Serialization.Json.dll new file mode 100755 index 00000000..94462a36 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Runtime.Serialization.Json.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Runtime.Serialization.Primitives.dll b/CS_Todo/bin/Debug/net6.0/System.Runtime.Serialization.Primitives.dll new file mode 100755 index 00000000..9868ae95 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Runtime.Serialization.Primitives.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Runtime.Serialization.Xml.dll b/CS_Todo/bin/Debug/net6.0/System.Runtime.Serialization.Xml.dll new file mode 100755 index 00000000..eae3e238 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Runtime.Serialization.Xml.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Runtime.Serialization.dll b/CS_Todo/bin/Debug/net6.0/System.Runtime.Serialization.dll new file mode 100755 index 00000000..842d9bc3 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Runtime.Serialization.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Runtime.dll b/CS_Todo/bin/Debug/net6.0/System.Runtime.dll new file mode 100755 index 00000000..17eb2fdf Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Runtime.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Security.AccessControl.dll b/CS_Todo/bin/Debug/net6.0/System.Security.AccessControl.dll new file mode 100755 index 00000000..e0e77ae5 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Security.AccessControl.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Security.Claims.dll b/CS_Todo/bin/Debug/net6.0/System.Security.Claims.dll new file mode 100755 index 00000000..d13ac0c1 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Security.Claims.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Security.Cryptography.Algorithms.dll b/CS_Todo/bin/Debug/net6.0/System.Security.Cryptography.Algorithms.dll new file mode 100755 index 00000000..2d14a221 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Security.Cryptography.Algorithms.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Security.Cryptography.Cng.dll b/CS_Todo/bin/Debug/net6.0/System.Security.Cryptography.Cng.dll new file mode 100755 index 00000000..96428311 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Security.Cryptography.Cng.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Security.Cryptography.Csp.dll b/CS_Todo/bin/Debug/net6.0/System.Security.Cryptography.Csp.dll new file mode 100755 index 00000000..c1a9ad1e Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Security.Cryptography.Csp.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Security.Cryptography.Encoding.dll b/CS_Todo/bin/Debug/net6.0/System.Security.Cryptography.Encoding.dll new file mode 100755 index 00000000..879eab2a Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Security.Cryptography.Encoding.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Security.Cryptography.OpenSsl.dll b/CS_Todo/bin/Debug/net6.0/System.Security.Cryptography.OpenSsl.dll new file mode 100755 index 00000000..6ec266d6 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Security.Cryptography.OpenSsl.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Security.Cryptography.Primitives.dll b/CS_Todo/bin/Debug/net6.0/System.Security.Cryptography.Primitives.dll new file mode 100755 index 00000000..481fa8a0 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Security.Cryptography.Primitives.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Security.Cryptography.X509Certificates.dll b/CS_Todo/bin/Debug/net6.0/System.Security.Cryptography.X509Certificates.dll new file mode 100755 index 00000000..5bfa75a7 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Security.Cryptography.X509Certificates.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Security.Principal.Windows.dll b/CS_Todo/bin/Debug/net6.0/System.Security.Principal.Windows.dll new file mode 100755 index 00000000..18321ae0 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Security.Principal.Windows.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Security.Principal.dll b/CS_Todo/bin/Debug/net6.0/System.Security.Principal.dll new file mode 100755 index 00000000..056180b3 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Security.Principal.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Security.SecureString.dll b/CS_Todo/bin/Debug/net6.0/System.Security.SecureString.dll new file mode 100755 index 00000000..e0b3d355 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Security.SecureString.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Security.dll b/CS_Todo/bin/Debug/net6.0/System.Security.dll new file mode 100755 index 00000000..571678da Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Security.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.ServiceModel.Web.dll b/CS_Todo/bin/Debug/net6.0/System.ServiceModel.Web.dll new file mode 100755 index 00000000..0c6ee7d7 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.ServiceModel.Web.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.ServiceProcess.dll b/CS_Todo/bin/Debug/net6.0/System.ServiceProcess.dll new file mode 100755 index 00000000..721bbf16 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.ServiceProcess.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Text.Encoding.CodePages.dll b/CS_Todo/bin/Debug/net6.0/System.Text.Encoding.CodePages.dll new file mode 100755 index 00000000..923c6b17 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Text.Encoding.CodePages.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Text.Encoding.Extensions.dll b/CS_Todo/bin/Debug/net6.0/System.Text.Encoding.Extensions.dll new file mode 100755 index 00000000..af3008a0 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Text.Encoding.Extensions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Text.Encoding.dll b/CS_Todo/bin/Debug/net6.0/System.Text.Encoding.dll new file mode 100755 index 00000000..cb717363 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Text.Encoding.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Text.Encodings.Web.dll b/CS_Todo/bin/Debug/net6.0/System.Text.Encodings.Web.dll new file mode 100755 index 00000000..6391c135 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Text.Encodings.Web.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Text.Json.dll b/CS_Todo/bin/Debug/net6.0/System.Text.Json.dll new file mode 100755 index 00000000..e792b740 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Text.Json.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Text.RegularExpressions.dll b/CS_Todo/bin/Debug/net6.0/System.Text.RegularExpressions.dll new file mode 100755 index 00000000..c77e944d Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Text.RegularExpressions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Threading.Channels.dll b/CS_Todo/bin/Debug/net6.0/System.Threading.Channels.dll new file mode 100755 index 00000000..1db84052 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Threading.Channels.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Threading.Overlapped.dll b/CS_Todo/bin/Debug/net6.0/System.Threading.Overlapped.dll new file mode 100755 index 00000000..1ddf4946 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Threading.Overlapped.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Threading.Tasks.Dataflow.dll b/CS_Todo/bin/Debug/net6.0/System.Threading.Tasks.Dataflow.dll new file mode 100755 index 00000000..fe9050d2 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Threading.Tasks.Dataflow.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Threading.Tasks.Extensions.dll b/CS_Todo/bin/Debug/net6.0/System.Threading.Tasks.Extensions.dll new file mode 100755 index 00000000..d34c1438 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Threading.Tasks.Extensions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Threading.Tasks.Parallel.dll b/CS_Todo/bin/Debug/net6.0/System.Threading.Tasks.Parallel.dll new file mode 100755 index 00000000..d0d07af1 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Threading.Tasks.Parallel.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Threading.Tasks.dll b/CS_Todo/bin/Debug/net6.0/System.Threading.Tasks.dll new file mode 100755 index 00000000..1b654922 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Threading.Tasks.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Threading.Thread.dll b/CS_Todo/bin/Debug/net6.0/System.Threading.Thread.dll new file mode 100755 index 00000000..86723e84 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Threading.Thread.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Threading.ThreadPool.dll b/CS_Todo/bin/Debug/net6.0/System.Threading.ThreadPool.dll new file mode 100755 index 00000000..3b377a8c Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Threading.ThreadPool.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Threading.Timer.dll b/CS_Todo/bin/Debug/net6.0/System.Threading.Timer.dll new file mode 100755 index 00000000..3808d919 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Threading.Timer.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Threading.dll b/CS_Todo/bin/Debug/net6.0/System.Threading.dll new file mode 100755 index 00000000..b5001366 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Threading.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Transactions.Local.dll b/CS_Todo/bin/Debug/net6.0/System.Transactions.Local.dll new file mode 100755 index 00000000..9103fbaf Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Transactions.Local.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Transactions.dll b/CS_Todo/bin/Debug/net6.0/System.Transactions.dll new file mode 100755 index 00000000..df6e0b39 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Transactions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.ValueTuple.dll b/CS_Todo/bin/Debug/net6.0/System.ValueTuple.dll new file mode 100755 index 00000000..9ba751dd Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.ValueTuple.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Web.HttpUtility.dll b/CS_Todo/bin/Debug/net6.0/System.Web.HttpUtility.dll new file mode 100755 index 00000000..8011df29 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Web.HttpUtility.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Web.dll b/CS_Todo/bin/Debug/net6.0/System.Web.dll new file mode 100755 index 00000000..4c55e12a Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Web.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Windows.dll b/CS_Todo/bin/Debug/net6.0/System.Windows.dll new file mode 100755 index 00000000..21a16a3b Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Windows.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Xml.Linq.dll b/CS_Todo/bin/Debug/net6.0/System.Xml.Linq.dll new file mode 100755 index 00000000..071a5742 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Xml.Linq.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Xml.ReaderWriter.dll b/CS_Todo/bin/Debug/net6.0/System.Xml.ReaderWriter.dll new file mode 100755 index 00000000..7b562be9 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Xml.ReaderWriter.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Xml.Serialization.dll b/CS_Todo/bin/Debug/net6.0/System.Xml.Serialization.dll new file mode 100755 index 00000000..f82c8c53 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Xml.Serialization.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Xml.XDocument.dll b/CS_Todo/bin/Debug/net6.0/System.Xml.XDocument.dll new file mode 100755 index 00000000..9a88e99d Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Xml.XDocument.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Xml.XPath.XDocument.dll b/CS_Todo/bin/Debug/net6.0/System.Xml.XPath.XDocument.dll new file mode 100755 index 00000000..4baebf36 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Xml.XPath.XDocument.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Xml.XPath.dll b/CS_Todo/bin/Debug/net6.0/System.Xml.XPath.dll new file mode 100755 index 00000000..f803a527 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Xml.XPath.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Xml.XmlDocument.dll b/CS_Todo/bin/Debug/net6.0/System.Xml.XmlDocument.dll new file mode 100755 index 00000000..266b1548 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Xml.XmlDocument.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Xml.XmlSerializer.dll b/CS_Todo/bin/Debug/net6.0/System.Xml.XmlSerializer.dll new file mode 100755 index 00000000..25e30162 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Xml.XmlSerializer.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.Xml.dll b/CS_Todo/bin/Debug/net6.0/System.Xml.dll new file mode 100755 index 00000000..12661079 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.Xml.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/System.dll b/CS_Todo/bin/Debug/net6.0/System.dll new file mode 100755 index 00000000..c06a0216 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/System.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/WindowsBase.dll b/CS_Todo/bin/Debug/net6.0/WindowsBase.dll new file mode 100755 index 00000000..2dc8accc Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/WindowsBase.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/dotnet.js b/CS_Todo/bin/Debug/net6.0/dotnet.js new file mode 100755 index 00000000..20e2903d --- /dev/null +++ b/CS_Todo/bin/Debug/net6.0/dotnet.js @@ -0,0 +1,319 @@ +var Module=typeof Module!=="undefined"?Module:{};var moduleOverrides={};var key;for(key in Module){if(Module.hasOwnProperty(key)){moduleOverrides[key]=Module[key]}}var arguments_=[];var thisProgram="./this.program";var quit_=function(status,toThrow){throw toThrow};var ENVIRONMENT_IS_WEB=false;var ENVIRONMENT_IS_WORKER=false;var ENVIRONMENT_IS_NODE=false;var ENVIRONMENT_IS_SHELL=false;ENVIRONMENT_IS_WEB=typeof window==="object";ENVIRONMENT_IS_WORKER=typeof importScripts==="function";ENVIRONMENT_IS_NODE=typeof process==="object"&&typeof process.versions==="object"&&typeof process.versions.node==="string";ENVIRONMENT_IS_SHELL=!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_NODE&&!ENVIRONMENT_IS_WORKER;var scriptDirectory="";function locateFile(path){if(Module["locateFile"]){return Module["locateFile"](path,scriptDirectory)}return scriptDirectory+path}var read_,readAsync,readBinary,setWindowTitle;var nodeFS;var nodePath;if(ENVIRONMENT_IS_NODE){if(ENVIRONMENT_IS_WORKER){scriptDirectory=require("path").dirname(scriptDirectory)+"/"}else{scriptDirectory=__dirname+"/"}read_=function shell_read(filename,binary){if(!nodeFS)nodeFS=require("fs");if(!nodePath)nodePath=require("path");filename=nodePath["normalize"](filename);return nodeFS["readFileSync"](filename,binary?null:"utf8")};readBinary=function readBinary(filename){var ret=read_(filename,true);if(!ret.buffer){ret=new Uint8Array(ret)}assert(ret.buffer);return ret};if(process["argv"].length>1){thisProgram=process["argv"][1].replace(/\\/g,"/")}arguments_=process["argv"].slice(2);if(typeof module!=="undefined"){module["exports"]=Module}process["on"]("uncaughtException",function(ex){if(!(ex instanceof ExitStatus)){throw ex}});process["on"]("unhandledRejection",abort);quit_=function(status){process["exit"](status)};Module["inspect"]=function(){return"[Emscripten Module object]"}}else if(ENVIRONMENT_IS_SHELL){if(typeof read!="undefined"){read_=function shell_read(f){return read(f)}}readBinary=function readBinary(f){var data;if(typeof readbuffer==="function"){return new Uint8Array(readbuffer(f))}data=read(f,"binary");assert(typeof data==="object");return data};if(typeof scriptArgs!="undefined"){arguments_=scriptArgs}else if(typeof arguments!="undefined"){arguments_=arguments}if(typeof quit==="function"){quit_=function(status){quit(status)}}if(typeof print!=="undefined"){if(typeof console==="undefined")console={};console.log=print;console.warn=console.error=typeof printErr!=="undefined"?printErr:print}}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href}else if(typeof document!=="undefined"&&document.currentScript){scriptDirectory=document.currentScript.src}if(scriptDirectory.indexOf("blob:")!==0){scriptDirectory=scriptDirectory.substr(0,scriptDirectory.lastIndexOf("/")+1)}else{scriptDirectory=""}{read_=function(url){var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.send(null);return xhr.responseText};if(ENVIRONMENT_IS_WORKER){readBinary=function(url){var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.responseType="arraybuffer";xhr.send(null);return new Uint8Array(xhr.response)}}readAsync=function(url,onload,onerror){var xhr=new XMLHttpRequest;xhr.open("GET",url,true);xhr.responseType="arraybuffer";xhr.onload=function(){if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}onerror()};xhr.onerror=onerror;xhr.send(null)}}setWindowTitle=function(title){document.title=title}}else{}var out=Module["print"]||console.log.bind(console);var err=Module["printErr"]||console.warn.bind(console);for(key in moduleOverrides){if(moduleOverrides.hasOwnProperty(key)){Module[key]=moduleOverrides[key]}}moduleOverrides=null;if(Module["arguments"])arguments_=Module["arguments"];if(Module["thisProgram"])thisProgram=Module["thisProgram"];if(Module["quit"])quit_=Module["quit"];var STACK_ALIGN=16;function alignMemory(size,factor){if(!factor)factor=STACK_ALIGN;return Math.ceil(size/factor)*factor}function warnOnce(text){if(!warnOnce.shown)warnOnce.shown={};if(!warnOnce.shown[text]){warnOnce.shown[text]=1;err(text)}}function convertJsFunctionToWasm(func,sig){if(typeof WebAssembly.Function==="function"){var typeNames={"i":"i32","j":"i64","f":"f32","d":"f64"};var type={parameters:[],results:sig[0]=="v"?[]:[typeNames[sig[0]]]};for(var i=1;i>0]=value;break;case"i8":HEAP8[ptr>>0]=value;break;case"i16":HEAP16[ptr>>1]=value;break;case"i32":HEAP32[ptr>>2]=value;break;case"i64":tempI64=[value>>>0,(tempDouble=value,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[ptr>>2]=tempI64[0],HEAP32[ptr+4>>2]=tempI64[1];break;case"float":HEAPF32[ptr>>2]=value;break;case"double":HEAPF64[ptr>>3]=value;break;default:abort("invalid type for setValue: "+type)}}function getValue(ptr,type,noSafe){type=type||"i8";if(type.charAt(type.length-1)==="*")type="i32";switch(type){case"i1":return HEAP8[ptr>>0];case"i8":return HEAP8[ptr>>0];case"i16":return HEAP16[ptr>>1];case"i32":return HEAP32[ptr>>2];case"i64":return HEAP32[ptr>>2];case"float":return HEAPF32[ptr>>2];case"double":return HEAPF64[ptr>>3];default:abort("invalid type for getValue: "+type)}return null}var wasmMemory;var ABORT=false;var EXITSTATUS;function assert(condition,text){if(!condition){abort("Assertion failed: "+text)}}function getCFunc(ident){var func=Module["_"+ident];assert(func,"Cannot call unknown function "+ident+", make sure it is exported");return func}function ccall(ident,returnType,argTypes,args,opts){var toC={"string":function(str){var ret=0;if(str!==null&&str!==undefined&&str!==0){var len=(str.length<<2)+1;ret=stackAlloc(len);stringToUTF8(str,ret,len)}return ret},"array":function(arr){var ret=stackAlloc(arr.length);writeArrayToMemory(arr,ret);return ret}};function convertReturnValue(ret){if(returnType==="string")return UTF8ToString(ret);if(returnType==="boolean")return Boolean(ret);return ret}var func=getCFunc(ident);var cArgs=[];var stack=0;if(args){for(var i=0;i=endIdx))++endPtr;if(endPtr-idx>16&&heap.subarray&&UTF8Decoder){return UTF8Decoder.decode(heap.subarray(idx,endPtr))}else{var str="";while(idx>10,56320|ch&1023)}}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):""}function stringToUTF8Array(str,heap,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023}if(u<=127){if(outIdx>=endIdx)break;heap[outIdx++]=u}else if(u<=2047){if(outIdx+1>=endIdx)break;heap[outIdx++]=192|u>>6;heap[outIdx++]=128|u&63}else if(u<=65535){if(outIdx+2>=endIdx)break;heap[outIdx++]=224|u>>12;heap[outIdx++]=128|u>>6&63;heap[outIdx++]=128|u&63}else{if(outIdx+3>=endIdx)break;heap[outIdx++]=240|u>>18;heap[outIdx++]=128|u>>12&63;heap[outIdx++]=128|u>>6&63;heap[outIdx++]=128|u&63}}heap[outIdx]=0;return outIdx-startIdx}function stringToUTF8(str,outPtr,maxBytesToWrite){return stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite)}function lengthBytesUTF8(str){var len=0;for(var i=0;i=55296&&u<=57343)u=65536+((u&1023)<<10)|str.charCodeAt(++i)&1023;if(u<=127)++len;else if(u<=2047)len+=2;else if(u<=65535)len+=3;else len+=4}return len}var UTF16Decoder=typeof TextDecoder!=="undefined"?new TextDecoder("utf-16le"):undefined;function stringToUTF16(str,outPtr,maxBytesToWrite){if(maxBytesToWrite===undefined){maxBytesToWrite=2147483647}if(maxBytesToWrite<2)return 0;maxBytesToWrite-=2;var startPtr=outPtr;var numCharsToWrite=maxBytesToWrite>1]=codeUnit;outPtr+=2}HEAP16[outPtr>>1]=0;return outPtr-startPtr}function allocateUTF8(str){var size=lengthBytesUTF8(str)+1;var ret=_malloc(size);if(ret)stringToUTF8Array(str,HEAP8,ret,size);return ret}function writeArrayToMemory(array,buffer){HEAP8.set(array,buffer)}function writeAsciiToMemory(str,buffer,dontAddNull){for(var i=0;i>0]=str.charCodeAt(i)}if(!dontAddNull)HEAP8[buffer>>0]=0}function alignUp(x,multiple){if(x%multiple>0){x+=multiple-x%multiple}return x}var buffer,HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;function updateGlobalBufferAndViews(buf){buffer=buf;Module["HEAP8"]=HEAP8=new Int8Array(buf);Module["HEAP16"]=HEAP16=new Int16Array(buf);Module["HEAP32"]=HEAP32=new Int32Array(buf);Module["HEAPU8"]=HEAPU8=new Uint8Array(buf);Module["HEAPU16"]=HEAPU16=new Uint16Array(buf);Module["HEAPU32"]=HEAPU32=new Uint32Array(buf);Module["HEAPF32"]=HEAPF32=new Float32Array(buf);Module["HEAPF64"]=HEAPF64=new Float64Array(buf)}var INITIAL_MEMORY=Module["INITIAL_MEMORY"]||16777216;var wasmTable;var __ATPRERUN__=[];var __ATINIT__=[];var __ATMAIN__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;var runtimeExited=false;function preRun(){if(Module["preRun"]){if(typeof Module["preRun"]=="function")Module["preRun"]=[Module["preRun"]];while(Module["preRun"].length){addOnPreRun(Module["preRun"].shift())}}callRuntimeCallbacks(__ATPRERUN__)}function initRuntime(){runtimeInitialized=true;if(!Module["noFSInit"]&&!FS.init.initialized)FS.init();TTY.init();SOCKFS.root=FS.mount(SOCKFS,{},null);callRuntimeCallbacks(__ATINIT__)}function exitRuntime(){runtimeExited=true}function postRun(){if(Module["postRun"]){if(typeof Module["postRun"]=="function")Module["postRun"]=[Module["postRun"]];while(Module["postRun"].length){addOnPostRun(Module["postRun"].shift())}}callRuntimeCallbacks(__ATPOSTRUN__)}function addOnPreRun(cb){__ATPRERUN__.unshift(cb)}function addOnInit(cb){__ATINIT__.unshift(cb)}function addOnPostRun(cb){__ATPOSTRUN__.unshift(cb)}var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;function getUniqueRunDependency(id){return id}function addRunDependency(id){runDependencies++;if(Module["monitorRunDependencies"]){Module["monitorRunDependencies"](runDependencies)}}function removeRunDependency(id){runDependencies--;if(Module["monitorRunDependencies"]){Module["monitorRunDependencies"](runDependencies)}if(runDependencies==0){if(runDependencyWatcher!==null){clearInterval(runDependencyWatcher);runDependencyWatcher=null}if(dependenciesFulfilled){var callback=dependenciesFulfilled;dependenciesFulfilled=null;callback()}}}Module["preloadedImages"]={};Module["preloadedAudios"]={};function abort(what){if(Module["onAbort"]){Module["onAbort"](what)}what+="";err(what);ABORT=true;EXITSTATUS=1;what="abort("+what+"). Build with -s ASSERTIONS=1 for more info.";var e=new WebAssembly.RuntimeError(what);throw e}var dataURIPrefix="data:application/octet-stream;base64,";function isDataURI(filename){return filename.startsWith(dataURIPrefix)}function isFileURI(filename){return filename.startsWith("file://")}var wasmBinaryFile="dotnet.wasm";if(!isDataURI(wasmBinaryFile)){wasmBinaryFile=locateFile(wasmBinaryFile)}function getBinary(file){try{if(file==wasmBinaryFile&&wasmBinary){return new Uint8Array(wasmBinary)}if(readBinary){return readBinary(file)}else{throw"both async and sync fetching of the wasm failed"}}catch(err){abort(err)}}function getBinaryPromise(){if(!wasmBinary&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)){if(typeof fetch==="function"&&!isFileURI(wasmBinaryFile)){return fetch(wasmBinaryFile,{credentials:"same-origin"}).then(function(response){if(!response["ok"]){throw"failed to load wasm binary file at '"+wasmBinaryFile+"'"}return response["arrayBuffer"]()}).catch(function(){return getBinary(wasmBinaryFile)})}else{if(readAsync){return new Promise(function(resolve,reject){readAsync(wasmBinaryFile,function(response){resolve(new Uint8Array(response))},reject)})}}}return Promise.resolve().then(function(){return getBinary(wasmBinaryFile)})}function createWasm(){var info={"env":asmLibraryArg,"wasi_snapshot_preview1":asmLibraryArg};function receiveInstance(instance,module){var exports=instance.exports;Module["asm"]=exports;wasmMemory=Module["asm"]["memory"];updateGlobalBufferAndViews(wasmMemory.buffer);wasmTable=Module["asm"]["__indirect_function_table"];addOnInit(Module["asm"]["__wasm_call_ctors"]);removeRunDependency("wasm-instantiate")}addRunDependency("wasm-instantiate");function receiveInstantiationResult(result){receiveInstance(result["instance"])}function instantiateArrayBuffer(receiver){return getBinaryPromise().then(function(binary){var result=WebAssembly.instantiate(binary,info);return result}).then(receiver,function(reason){err("failed to asynchronously prepare wasm: "+reason);abort(reason)})}function instantiateAsync(){if(!wasmBinary&&typeof WebAssembly.instantiateStreaming==="function"&&!isDataURI(wasmBinaryFile)&&!isFileURI(wasmBinaryFile)&&typeof fetch==="function"){return fetch(wasmBinaryFile,{credentials:"same-origin"}).then(function(response){var result=WebAssembly.instantiateStreaming(response,info);return result.then(receiveInstantiationResult,function(reason){err("wasm streaming compile failed: "+reason);err("falling back to ArrayBuffer instantiation");return instantiateArrayBuffer(receiveInstantiationResult)})})}else{return instantiateArrayBuffer(receiveInstantiationResult)}}if(Module["instantiateWasm"]){try{var exports=Module["instantiateWasm"](info,receiveInstance);return exports}catch(e){err("Module.instantiateWasm callback failed with error: "+e);return false}}instantiateAsync();return{}}var tempDouble;var tempI64;var ASM_CONSTS={580212:function($0,$1){MONO.string_decoder.decode($0,$0+$1,true)},580263:function($0,$1,$2){var js_str=MONO.string_decoder.copy($0);try{var res=eval(js_str);setValue($2,0,"i32");if(res===null||res===undefined)return 0;else res=res.toString()}catch(e){res=e.toString();setValue($2,1,"i32");if(res===null||res===undefined)res="unknown exception";var stack=e.stack;if(stack){if(stack.startsWith(res))res=stack;else res+="\n"+stack}}var buff=Module._malloc((res.length+1)*2);stringToUTF16(res,buff,(res.length+1)*2);setValue($1,res.length,"i32");return buff},580818:function($0,$1,$2,$3,$4){var log_level=$0;var message=Module.UTF8ToString($1);var isFatal=$2;var domain=Module.UTF8ToString($3);var dataPtr=$4;if(MONO["logging"]&&MONO.logging["trace"]){MONO.logging.trace(domain,log_level,message,isFatal,dataPtr);return}if(isFatal)console.trace(message);switch(Module.UTF8ToString($0)){case"critical":case"error":console.error(message);break;case"warning":console.warn(message);break;case"message":console.log(message);break;case"info":console.info(message);break;case"debug":console.debug(message);break;default:console.log(message);break}},581442:function($0,$1){var level=$0;var message=Module.UTF8ToString($1);var namespace="Debugger.Debug";if(MONO["logging"]&&MONO.logging["debugger"]){MONO.logging.debugger(level,message);return}console.debug("%s: %s",namespace,message)},581682:function($0,$1,$2,$3){MONO.mono_wasm_add_dbg_command_received($0,$1,$2,$3)},581744:function($0,$1,$2,$3){MONO.mono_wasm_add_dbg_command_received($0,$1,$2,$3)},581806:function($0,$1,$2,$3){MONO.mono_wasm_add_dbg_command_received($0,$1,$2,$3)},581868:function($0,$1,$2,$3){MONO.mono_wasm_add_dbg_command_received($0,$1,$2,$3)},581930:function($0,$1){MONO.mono_wasm_add_dbg_command_received(1,0,$0,$1)}};function compile_function(snippet_ptr,len,is_exception){try{var data=MONO.string_decoder.decode(snippet_ptr,snippet_ptr+len);var wrapper="(function () { "+data+" })";var funcFactory=eval(wrapper);var func=funcFactory();if(typeof func!=="function"){throw new Error("Code must return an instance of a JavaScript function. "+"Please use `return` statement to return a function.")}setValue(is_exception,0,"i32");return BINDING.js_to_mono_obj(func,true)}catch(e){res=e.toString();setValue(is_exception,1,"i32");if(res===null||res===undefined)res="unknown exception";return BINDING.js_to_mono_obj(res,true)}}function callRuntimeCallbacks(callbacks){while(callbacks.length>0){var callback=callbacks.shift();if(typeof callback=="function"){callback(Module);continue}var func=callback.func;if(typeof func==="number"){if(callback.arg===undefined){wasmTable.get(func)()}else{wasmTable.get(func)(callback.arg)}}else{func(callback.arg===undefined?null:callback.arg)}}}function demangle(func){return func}function demangleAll(text){var regex=/\b_Z[\w\d_]+/g;return text.replace(regex,function(x){var y=demangle(x);return x===y?x:y+" ["+x+"]"})}function jsStackTrace(){var error=new Error;if(!error.stack){try{throw new Error}catch(e){error=e}if(!error.stack){return"(no stack trace available)"}}return error.stack.toString()}var runtimeKeepaliveCounter=0;function keepRuntimeAlive(){return noExitRuntime||runtimeKeepaliveCounter>0}function ___assert_fail(condition,filename,line,func){abort("Assertion failed: "+UTF8ToString(condition)+", at: "+[filename?UTF8ToString(filename):"unknown filename",line,func?UTF8ToString(func):"unknown function"])}var _emscripten_get_now;if(ENVIRONMENT_IS_NODE){_emscripten_get_now=function(){var t=process["hrtime"]();return t[0]*1e3+t[1]/1e6}}else if(typeof dateNow!=="undefined"){_emscripten_get_now=dateNow}else _emscripten_get_now=function(){return performance.now()};var _emscripten_get_now_is_monotonic=true;function setErrNo(value){HEAP32[___errno_location()>>2]=value;return value}function _clock_gettime(clk_id,tp){var now;if(clk_id===0){now=Date.now()}else if((clk_id===1||clk_id===4)&&_emscripten_get_now_is_monotonic){now=_emscripten_get_now()}else{setErrNo(28);return-1}HEAP32[tp>>2]=now/1e3|0;HEAP32[tp+4>>2]=now%1e3*1e3*1e3|0;return 0}function ___clock_gettime(a0,a1){return _clock_gettime(a0,a1)}var ExceptionInfoAttrs={DESTRUCTOR_OFFSET:0,REFCOUNT_OFFSET:4,TYPE_OFFSET:8,CAUGHT_OFFSET:12,RETHROWN_OFFSET:13,SIZE:16};function ___cxa_allocate_exception(size){return _malloc(size+ExceptionInfoAttrs.SIZE)+ExceptionInfoAttrs.SIZE}function ExceptionInfo(excPtr){this.excPtr=excPtr;this.ptr=excPtr-ExceptionInfoAttrs.SIZE;this.set_type=function(type){HEAP32[this.ptr+ExceptionInfoAttrs.TYPE_OFFSET>>2]=type};this.get_type=function(){return HEAP32[this.ptr+ExceptionInfoAttrs.TYPE_OFFSET>>2]};this.set_destructor=function(destructor){HEAP32[this.ptr+ExceptionInfoAttrs.DESTRUCTOR_OFFSET>>2]=destructor};this.get_destructor=function(){return HEAP32[this.ptr+ExceptionInfoAttrs.DESTRUCTOR_OFFSET>>2]};this.set_refcount=function(refcount){HEAP32[this.ptr+ExceptionInfoAttrs.REFCOUNT_OFFSET>>2]=refcount};this.set_caught=function(caught){caught=caught?1:0;HEAP8[this.ptr+ExceptionInfoAttrs.CAUGHT_OFFSET>>0]=caught};this.get_caught=function(){return HEAP8[this.ptr+ExceptionInfoAttrs.CAUGHT_OFFSET>>0]!=0};this.set_rethrown=function(rethrown){rethrown=rethrown?1:0;HEAP8[this.ptr+ExceptionInfoAttrs.RETHROWN_OFFSET>>0]=rethrown};this.get_rethrown=function(){return HEAP8[this.ptr+ExceptionInfoAttrs.RETHROWN_OFFSET>>0]!=0};this.init=function(type,destructor){this.set_type(type);this.set_destructor(destructor);this.set_refcount(0);this.set_caught(false);this.set_rethrown(false)};this.add_ref=function(){var value=HEAP32[this.ptr+ExceptionInfoAttrs.REFCOUNT_OFFSET>>2];HEAP32[this.ptr+ExceptionInfoAttrs.REFCOUNT_OFFSET>>2]=value+1};this.release_ref=function(){var prev=HEAP32[this.ptr+ExceptionInfoAttrs.REFCOUNT_OFFSET>>2];HEAP32[this.ptr+ExceptionInfoAttrs.REFCOUNT_OFFSET>>2]=prev-1;return prev===1}}function CatchInfo(ptr){this.free=function(){_free(this.ptr);this.ptr=0};this.set_base_ptr=function(basePtr){HEAP32[this.ptr>>2]=basePtr};this.get_base_ptr=function(){return HEAP32[this.ptr>>2]};this.set_adjusted_ptr=function(adjustedPtr){var ptrSize=4;HEAP32[this.ptr+ptrSize>>2]=adjustedPtr};this.get_adjusted_ptr=function(){var ptrSize=4;return HEAP32[this.ptr+ptrSize>>2]};this.get_exception_ptr=function(){var isPointer=___cxa_is_pointer_type(this.get_exception_info().get_type());if(isPointer){return HEAP32[this.get_base_ptr()>>2]}var adjusted=this.get_adjusted_ptr();if(adjusted!==0)return adjusted;return this.get_base_ptr()};this.get_exception_info=function(){return new ExceptionInfo(this.get_base_ptr())};if(ptr===undefined){this.ptr=_malloc(8);this.set_adjusted_ptr(0)}else{this.ptr=ptr}}var exceptionCaught=[];function exception_addRef(info){info.add_ref()}var uncaughtExceptionCount=0;function ___cxa_begin_catch(ptr){var catchInfo=new CatchInfo(ptr);var info=catchInfo.get_exception_info();if(!info.get_caught()){info.set_caught(true);uncaughtExceptionCount--}info.set_rethrown(false);exceptionCaught.push(catchInfo);exception_addRef(info);return catchInfo.get_exception_ptr()}var exceptionLast=0;function ___cxa_free_exception(ptr){return _free(new ExceptionInfo(ptr).ptr)}function exception_decRef(info){if(info.release_ref()&&!info.get_rethrown()){var destructor=info.get_destructor();if(destructor){wasmTable.get(destructor)(info.excPtr)}___cxa_free_exception(info.excPtr)}}function ___cxa_end_catch(){_setThrew(0);var catchInfo=exceptionCaught.pop();exception_decRef(catchInfo.get_exception_info());catchInfo.free();exceptionLast=0}function ___resumeException(catchInfoPtr){var catchInfo=new CatchInfo(catchInfoPtr);var ptr=catchInfo.get_base_ptr();if(!exceptionLast){exceptionLast=ptr}catchInfo.free();throw ptr}function ___cxa_find_matching_catch_3(){var thrown=exceptionLast;if(!thrown){setTempRet0(0);return 0|0}var info=new ExceptionInfo(thrown);var thrownType=info.get_type();var catchInfo=new CatchInfo;catchInfo.set_base_ptr(thrown);if(!thrownType){setTempRet0(0);return catchInfo.ptr|0}var typeArray=Array.prototype.slice.call(arguments);var stackTop=stackSave();var exceptionThrowBuf=stackAlloc(4);HEAP32[exceptionThrowBuf>>2]=thrown;for(var i=0;i>2];if(thrown!==adjusted){catchInfo.set_adjusted_ptr(adjusted)}setTempRet0(caughtType);return catchInfo.ptr|0}}stackRestore(stackTop);setTempRet0(thrownType);return catchInfo.ptr|0}function ___cxa_throw(ptr,type,destructor){var info=new ExceptionInfo(ptr);info.init(type,destructor);exceptionLast=ptr;uncaughtExceptionCount++;throw ptr}var PATH={splitPath:function(filename){var splitPathRe=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;return splitPathRe.exec(filename).slice(1)},normalizeArray:function(parts,allowAboveRoot){var up=0;for(var i=parts.length-1;i>=0;i--){var last=parts[i];if(last==="."){parts.splice(i,1)}else if(last===".."){parts.splice(i,1);up++}else if(up){parts.splice(i,1);up--}}if(allowAboveRoot){for(;up;up--){parts.unshift("..")}}return parts},normalize:function(path){var isAbsolute=path.charAt(0)==="/",trailingSlash=path.substr(-1)==="/";path=PATH.normalizeArray(path.split("/").filter(function(p){return!!p}),!isAbsolute).join("/");if(!path&&!isAbsolute){path="."}if(path&&trailingSlash){path+="/"}return(isAbsolute?"/":"")+path},dirname:function(path){var result=PATH.splitPath(path),root=result[0],dir=result[1];if(!root&&!dir){return"."}if(dir){dir=dir.substr(0,dir.length-1)}return root+dir},basename:function(path){if(path==="/")return"/";path=PATH.normalize(path);path=path.replace(/\/$/,"");var lastSlash=path.lastIndexOf("/");if(lastSlash===-1)return path;return path.substr(lastSlash+1)},extname:function(path){return PATH.splitPath(path)[3]},join:function(){var paths=Array.prototype.slice.call(arguments,0);return PATH.normalize(paths.join("/"))},join2:function(l,r){return PATH.normalize(l+"/"+r)}};function getRandomDevice(){if(typeof crypto==="object"&&typeof crypto["getRandomValues"]==="function"){var randomBuffer=new Uint8Array(1);return function(){crypto.getRandomValues(randomBuffer);return randomBuffer[0]}}else if(ENVIRONMENT_IS_NODE){try{var crypto_module=require("crypto");return function(){return crypto_module["randomBytes"](1)[0]}}catch(e){}}return function(){abort("randomDevice")}}var PATH_FS={resolve:function(){var resolvedPath="",resolvedAbsolute=false;for(var i=arguments.length-1;i>=-1&&!resolvedAbsolute;i--){var path=i>=0?arguments[i]:FS.cwd();if(typeof path!=="string"){throw new TypeError("Arguments to path.resolve must be strings")}else if(!path){return""}resolvedPath=path+"/"+resolvedPath;resolvedAbsolute=path.charAt(0)==="/"}resolvedPath=PATH.normalizeArray(resolvedPath.split("/").filter(function(p){return!!p}),!resolvedAbsolute).join("/");return(resolvedAbsolute?"/":"")+resolvedPath||"."},relative:function(from,to){from=PATH_FS.resolve(from).substr(1);to=PATH_FS.resolve(to).substr(1);function trim(arr){var start=0;for(;start=0;end--){if(arr[end]!=="")break}if(start>end)return[];return arr.slice(start,end-start+1)}var fromParts=trim(from.split("/"));var toParts=trim(to.split("/"));var length=Math.min(fromParts.length,toParts.length);var samePartsLength=length;for(var i=0;i0){result=buf.slice(0,bytesRead).toString("utf-8")}else{result=null}}else if(typeof window!="undefined"&&typeof window.prompt=="function"){result=window.prompt("Input: ");if(result!==null){result+="\n"}}else if(typeof readline=="function"){result=readline();if(result!==null){result+="\n"}}if(!result){return null}tty.input=intArrayFromString(result,true)}return tty.input.shift()},put_char:function(tty,val){if(val===null||val===10){out(UTF8ArrayToString(tty.output,0));tty.output=[]}else{if(val!=0)tty.output.push(val)}},flush:function(tty){if(tty.output&&tty.output.length>0){out(UTF8ArrayToString(tty.output,0));tty.output=[]}}},default_tty1_ops:{put_char:function(tty,val){if(val===null||val===10){err(UTF8ArrayToString(tty.output,0));tty.output=[]}else{if(val!=0)tty.output.push(val)}},flush:function(tty){if(tty.output&&tty.output.length>0){err(UTF8ArrayToString(tty.output,0));tty.output=[]}}}};function mmapAlloc(size){var alignedSize=alignMemory(size,65536);var ptr=_malloc(alignedSize);while(size=newCapacity)return;var CAPACITY_DOUBLING_MAX=1024*1024;newCapacity=Math.max(newCapacity,prevCapacity*(prevCapacity>>0);if(prevCapacity!=0)newCapacity=Math.max(newCapacity,256);var oldContents=node.contents;node.contents=new Uint8Array(newCapacity);if(node.usedBytes>0)node.contents.set(oldContents.subarray(0,node.usedBytes),0)},resizeFileStorage:function(node,newSize){if(node.usedBytes==newSize)return;if(newSize==0){node.contents=null;node.usedBytes=0}else{var oldContents=node.contents;node.contents=new Uint8Array(newSize);if(oldContents){node.contents.set(oldContents.subarray(0,Math.min(newSize,node.usedBytes)))}node.usedBytes=newSize}},node_ops:{getattr:function(node){var attr={};attr.dev=FS.isChrdev(node.mode)?node.id:1;attr.ino=node.id;attr.mode=node.mode;attr.nlink=1;attr.uid=0;attr.gid=0;attr.rdev=node.rdev;if(FS.isDir(node.mode)){attr.size=4096}else if(FS.isFile(node.mode)){attr.size=node.usedBytes}else if(FS.isLink(node.mode)){attr.size=node.link.length}else{attr.size=0}attr.atime=new Date(node.timestamp);attr.mtime=new Date(node.timestamp);attr.ctime=new Date(node.timestamp);attr.blksize=4096;attr.blocks=Math.ceil(attr.size/attr.blksize);return attr},setattr:function(node,attr){if(attr.mode!==undefined){node.mode=attr.mode}if(attr.timestamp!==undefined){node.timestamp=attr.timestamp}if(attr.size!==undefined){MEMFS.resizeFileStorage(node,attr.size)}},lookup:function(parent,name){throw FS.genericErrors[44]},mknod:function(parent,name,mode,dev){return MEMFS.createNode(parent,name,mode,dev)},rename:function(old_node,new_dir,new_name){if(FS.isDir(old_node.mode)){var new_node;try{new_node=FS.lookupNode(new_dir,new_name)}catch(e){}if(new_node){for(var i in new_node.contents){throw new FS.ErrnoError(55)}}}delete old_node.parent.contents[old_node.name];old_node.parent.timestamp=Date.now();old_node.name=new_name;new_dir.contents[new_name]=old_node;new_dir.timestamp=old_node.parent.timestamp;old_node.parent=new_dir},unlink:function(parent,name){delete parent.contents[name];parent.timestamp=Date.now()},rmdir:function(parent,name){var node=FS.lookupNode(parent,name);for(var i in node.contents){throw new FS.ErrnoError(55)}delete parent.contents[name];parent.timestamp=Date.now()},readdir:function(node){var entries=[".",".."];for(var key in node.contents){if(!node.contents.hasOwnProperty(key)){continue}entries.push(key)}return entries},symlink:function(parent,newname,oldpath){var node=MEMFS.createNode(parent,newname,511|40960,0);node.link=oldpath;return node},readlink:function(node){if(!FS.isLink(node.mode)){throw new FS.ErrnoError(28)}return node.link}},stream_ops:{read:function(stream,buffer,offset,length,position){var contents=stream.node.contents;if(position>=stream.node.usedBytes)return 0;var size=Math.min(stream.node.usedBytes-position,length);if(size>8&&contents.subarray){buffer.set(contents.subarray(position,position+size),offset)}else{for(var i=0;i0||position+length8){throw new FS.ErrnoError(32)}var parts=PATH.normalizeArray(path.split("/").filter(function(p){return!!p}),false);var current=FS.root;var current_path="/";for(var i=0;i40){throw new FS.ErrnoError(32)}}}}return{path:current_path,node:current}},getPath:function(node){var path;while(true){if(FS.isRoot(node)){var mount=node.mount.mountpoint;if(!path)return mount;return mount[mount.length-1]!=="/"?mount+"/"+path:mount+path}path=path?node.name+"/"+path:node.name;node=node.parent}},hashName:function(parentid,name){var hash=0;for(var i=0;i>>0)%FS.nameTable.length},hashAddNode:function(node){var hash=FS.hashName(node.parent.id,node.name);node.name_next=FS.nameTable[hash];FS.nameTable[hash]=node},hashRemoveNode:function(node){var hash=FS.hashName(node.parent.id,node.name);if(FS.nameTable[hash]===node){FS.nameTable[hash]=node.name_next}else{var current=FS.nameTable[hash];while(current){if(current.name_next===node){current.name_next=node.name_next;break}current=current.name_next}}},lookupNode:function(parent,name){var errCode=FS.mayLookup(parent);if(errCode){throw new FS.ErrnoError(errCode,parent)}var hash=FS.hashName(parent.id,name);for(var node=FS.nameTable[hash];node;node=node.name_next){var nodeName=node.name;if(node.parent.id===parent.id&&nodeName===name){return node}}return FS.lookup(parent,name)},createNode:function(parent,name,mode,rdev){var node=new FS.FSNode(parent,name,mode,rdev);FS.hashAddNode(node);return node},destroyNode:function(node){FS.hashRemoveNode(node)},isRoot:function(node){return node===node.parent},isMountpoint:function(node){return!!node.mounted},isFile:function(mode){return(mode&61440)===32768},isDir:function(mode){return(mode&61440)===16384},isLink:function(mode){return(mode&61440)===40960},isChrdev:function(mode){return(mode&61440)===8192},isBlkdev:function(mode){return(mode&61440)===24576},isFIFO:function(mode){return(mode&61440)===4096},isSocket:function(mode){return(mode&49152)===49152},flagModes:{"r":0,"r+":2,"w":577,"w+":578,"a":1089,"a+":1090},modeStringToFlags:function(str){var flags=FS.flagModes[str];if(typeof flags==="undefined"){throw new Error("Unknown file open mode: "+str)}return flags},flagsToPermissionString:function(flag){var perms=["r","w","rw"][flag&3];if(flag&512){perms+="w"}return perms},nodePermissions:function(node,perms){if(FS.ignorePermissions){return 0}if(perms.includes("r")&&!(node.mode&292)){return 2}else if(perms.includes("w")&&!(node.mode&146)){return 2}else if(perms.includes("x")&&!(node.mode&73)){return 2}return 0},mayLookup:function(dir){var errCode=FS.nodePermissions(dir,"x");if(errCode)return errCode;if(!dir.node_ops.lookup)return 2;return 0},mayCreate:function(dir,name){try{var node=FS.lookupNode(dir,name);return 20}catch(e){}return FS.nodePermissions(dir,"wx")},mayDelete:function(dir,name,isdir){var node;try{node=FS.lookupNode(dir,name)}catch(e){return e.errno}var errCode=FS.nodePermissions(dir,"wx");if(errCode){return errCode}if(isdir){if(!FS.isDir(node.mode)){return 54}if(FS.isRoot(node)||FS.getPath(node)===FS.cwd()){return 10}}else{if(FS.isDir(node.mode)){return 31}}return 0},mayOpen:function(node,flags){if(!node){return 44}if(FS.isLink(node.mode)){return 32}else if(FS.isDir(node.mode)){if(FS.flagsToPermissionString(flags)!=="r"||flags&512){return 31}}return FS.nodePermissions(node,FS.flagsToPermissionString(flags))},MAX_OPEN_FDS:4096,nextfd:function(fd_start,fd_end){fd_start=fd_start||0;fd_end=fd_end||FS.MAX_OPEN_FDS;for(var fd=fd_start;fd<=fd_end;fd++){if(!FS.streams[fd]){return fd}}throw new FS.ErrnoError(33)},getStream:function(fd){return FS.streams[fd]},createStream:function(stream,fd_start,fd_end){if(!FS.FSStream){FS.FSStream=function(){};FS.FSStream.prototype={object:{get:function(){return this.node},set:function(val){this.node=val}},isRead:{get:function(){return(this.flags&2097155)!==1}},isWrite:{get:function(){return(this.flags&2097155)!==0}},isAppend:{get:function(){return this.flags&1024}}}}var newStream=new FS.FSStream;for(var p in stream){newStream[p]=stream[p]}stream=newStream;var fd=FS.nextfd(fd_start,fd_end);stream.fd=fd;FS.streams[fd]=stream;return stream},closeStream:function(fd){FS.streams[fd]=null},chrdev_stream_ops:{open:function(stream){var device=FS.getDevice(stream.node.rdev);stream.stream_ops=device.stream_ops;if(stream.stream_ops.open){stream.stream_ops.open(stream)}},llseek:function(){throw new FS.ErrnoError(70)}},major:function(dev){return dev>>8},minor:function(dev){return dev&255},makedev:function(ma,mi){return ma<<8|mi},registerDevice:function(dev,ops){FS.devices[dev]={stream_ops:ops}},getDevice:function(dev){return FS.devices[dev]},getMounts:function(mount){var mounts=[];var check=[mount];while(check.length){var m=check.pop();mounts.push(m);check.push.apply(check,m.mounts)}return mounts},syncfs:function(populate,callback){if(typeof populate==="function"){callback=populate;populate=false}FS.syncFSRequests++;if(FS.syncFSRequests>1){err("warning: "+FS.syncFSRequests+" FS.syncfs operations in flight at once, probably just doing extra work")}var mounts=FS.getMounts(FS.root.mount);var completed=0;function doCallback(errCode){FS.syncFSRequests--;return callback(errCode)}function done(errCode){if(errCode){if(!done.errored){done.errored=true;return doCallback(errCode)}return}if(++completed>=mounts.length){doCallback(null)}}mounts.forEach(function(mount){if(!mount.type.syncfs){return done(null)}mount.type.syncfs(mount,populate,done)})},mount:function(type,opts,mountpoint){var root=mountpoint==="/";var pseudo=!mountpoint;var node;if(root&&FS.root){throw new FS.ErrnoError(10)}else if(!root&&!pseudo){var lookup=FS.lookupPath(mountpoint,{follow_mount:false});mountpoint=lookup.path;node=lookup.node;if(FS.isMountpoint(node)){throw new FS.ErrnoError(10)}if(!FS.isDir(node.mode)){throw new FS.ErrnoError(54)}}var mount={type:type,opts:opts,mountpoint:mountpoint,mounts:[]};var mountRoot=type.mount(mount);mountRoot.mount=mount;mount.root=mountRoot;if(root){FS.root=mountRoot}else if(node){node.mounted=mount;if(node.mount){node.mount.mounts.push(mount)}}return mountRoot},unmount:function(mountpoint){var lookup=FS.lookupPath(mountpoint,{follow_mount:false});if(!FS.isMountpoint(lookup.node)){throw new FS.ErrnoError(28)}var node=lookup.node;var mount=node.mounted;var mounts=FS.getMounts(mount);Object.keys(FS.nameTable).forEach(function(hash){var current=FS.nameTable[hash];while(current){var next=current.name_next;if(mounts.includes(current.mount)){FS.destroyNode(current)}current=next}});node.mounted=null;var idx=node.mount.mounts.indexOf(mount);node.mount.mounts.splice(idx,1)},lookup:function(parent,name){return parent.node_ops.lookup(parent,name)},mknod:function(path,mode,dev){var lookup=FS.lookupPath(path,{parent:true});var parent=lookup.node;var name=PATH.basename(path);if(!name||name==="."||name===".."){throw new FS.ErrnoError(28)}var errCode=FS.mayCreate(parent,name);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.mknod){throw new FS.ErrnoError(63)}return parent.node_ops.mknod(parent,name,mode,dev)},create:function(path,mode){mode=mode!==undefined?mode:438;mode&=4095;mode|=32768;return FS.mknod(path,mode,0)},mkdir:function(path,mode){mode=mode!==undefined?mode:511;mode&=511|512;mode|=16384;return FS.mknod(path,mode,0)},mkdirTree:function(path,mode){var dirs=path.split("/");var d="";for(var i=0;ithis.length-1||idx<0){return undefined}var chunkOffset=idx%this.chunkSize;var chunkNum=idx/this.chunkSize|0;return this.getter(chunkNum)[chunkOffset]};LazyUint8Array.prototype.setDataGetter=function LazyUint8Array_setDataGetter(getter){this.getter=getter};LazyUint8Array.prototype.cacheLength=function LazyUint8Array_cacheLength(){var xhr=new XMLHttpRequest;xhr.open("HEAD",url,false);xhr.send(null);if(!(xhr.status>=200&&xhr.status<300||xhr.status===304))throw new Error("Couldn't load "+url+". Status: "+xhr.status);var datalength=Number(xhr.getResponseHeader("Content-length"));var header;var hasByteServing=(header=xhr.getResponseHeader("Accept-Ranges"))&&header==="bytes";var usesGzip=(header=xhr.getResponseHeader("Content-Encoding"))&&header==="gzip";var chunkSize=1024*1024;if(!hasByteServing)chunkSize=datalength;var doXHR=function(from,to){if(from>to)throw new Error("invalid range ("+from+", "+to+") or no bytes requested!");if(to>datalength-1)throw new Error("only "+datalength+" bytes available! programmer error!");var xhr=new XMLHttpRequest;xhr.open("GET",url,false);if(datalength!==chunkSize)xhr.setRequestHeader("Range","bytes="+from+"-"+to);if(typeof Uint8Array!="undefined")xhr.responseType="arraybuffer";if(xhr.overrideMimeType){xhr.overrideMimeType("text/plain; charset=x-user-defined")}xhr.send(null);if(!(xhr.status>=200&&xhr.status<300||xhr.status===304))throw new Error("Couldn't load "+url+". Status: "+xhr.status);if(xhr.response!==undefined){return new Uint8Array(xhr.response||[])}else{return intArrayFromString(xhr.responseText||"",true)}};var lazyArray=this;lazyArray.setDataGetter(function(chunkNum){var start=chunkNum*chunkSize;var end=(chunkNum+1)*chunkSize-1;end=Math.min(end,datalength-1);if(typeof lazyArray.chunks[chunkNum]==="undefined"){lazyArray.chunks[chunkNum]=doXHR(start,end)}if(typeof lazyArray.chunks[chunkNum]==="undefined")throw new Error("doXHR failed!");return lazyArray.chunks[chunkNum]});if(usesGzip||!datalength){chunkSize=datalength=1;datalength=this.getter(0).length;chunkSize=datalength;out("LazyFiles on gzip forces download of the whole file when length is accessed")}this._length=datalength;this._chunkSize=chunkSize;this.lengthKnown=true};if(typeof XMLHttpRequest!=="undefined"){if(!ENVIRONMENT_IS_WORKER)throw"Cannot do synchronous binary XHRs outside webworkers in modern browsers. Use --embed-file or --preload-file in emcc";var lazyArray=new LazyUint8Array;Object.defineProperties(lazyArray,{length:{get:function(){if(!this.lengthKnown){this.cacheLength()}return this._length}},chunkSize:{get:function(){if(!this.lengthKnown){this.cacheLength()}return this._chunkSize}}});var properties={isDevice:false,contents:lazyArray}}else{var properties={isDevice:false,url:url}}var node=FS.createFile(parent,name,properties,canRead,canWrite);if(properties.contents){node.contents=properties.contents}else if(properties.url){node.contents=null;node.url=properties.url}Object.defineProperties(node,{usedBytes:{get:function(){return this.contents.length}}});var stream_ops={};var keys=Object.keys(node.stream_ops);keys.forEach(function(key){var fn=node.stream_ops[key];stream_ops[key]=function forceLoadLazyFile(){FS.forceLoadFile(node);return fn.apply(null,arguments)}});stream_ops.read=function stream_ops_read(stream,buffer,offset,length,position){FS.forceLoadFile(node);var contents=stream.node.contents;if(position>=contents.length)return 0;var size=Math.min(contents.length-position,length);if(contents.slice){for(var i=0;i>2]=stat.dev;HEAP32[buf+4>>2]=0;HEAP32[buf+8>>2]=stat.ino;HEAP32[buf+12>>2]=stat.mode;HEAP32[buf+16>>2]=stat.nlink;HEAP32[buf+20>>2]=stat.uid;HEAP32[buf+24>>2]=stat.gid;HEAP32[buf+28>>2]=stat.rdev;HEAP32[buf+32>>2]=0;tempI64=[stat.size>>>0,(tempDouble=stat.size,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[buf+40>>2]=tempI64[0],HEAP32[buf+44>>2]=tempI64[1];HEAP32[buf+48>>2]=4096;HEAP32[buf+52>>2]=stat.blocks;HEAP32[buf+56>>2]=stat.atime.getTime()/1e3|0;HEAP32[buf+60>>2]=0;HEAP32[buf+64>>2]=stat.mtime.getTime()/1e3|0;HEAP32[buf+68>>2]=0;HEAP32[buf+72>>2]=stat.ctime.getTime()/1e3|0;HEAP32[buf+76>>2]=0;tempI64=[stat.ino>>>0,(tempDouble=stat.ino,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[buf+80>>2]=tempI64[0],HEAP32[buf+84>>2]=tempI64[1];return 0},doMsync:function(addr,stream,len,flags,offset){var buffer=HEAPU8.slice(addr,addr+len);FS.msync(stream,buffer,offset,len,flags)},doMkdir:function(path,mode){path=PATH.normalize(path);if(path[path.length-1]==="/")path=path.substr(0,path.length-1);FS.mkdir(path,mode,0);return 0},doMknod:function(path,mode,dev){switch(mode&61440){case 32768:case 8192:case 24576:case 4096:case 49152:break;default:return-28}FS.mknod(path,mode,dev);return 0},doReadlink:function(path,buf,bufsize){if(bufsize<=0)return-28;var ret=FS.readlink(path);var len=Math.min(bufsize,lengthBytesUTF8(ret));var endChar=HEAP8[buf+len];stringToUTF8(ret,buf,bufsize+1);HEAP8[buf+len]=endChar;return len},doAccess:function(path,amode){if(amode&~7){return-28}var node;var lookup=FS.lookupPath(path,{follow:true});node=lookup.node;if(!node){return-44}var perms="";if(amode&4)perms+="r";if(amode&2)perms+="w";if(amode&1)perms+="x";if(perms&&FS.nodePermissions(node,perms)){return-2}return 0},doDup:function(path,flags,suggestFD){var suggest=FS.getStream(suggestFD);if(suggest)FS.close(suggest);return FS.open(path,flags,0,suggestFD,suggestFD).fd},doReadv:function(stream,iov,iovcnt,offset){var ret=0;for(var i=0;i>2];var len=HEAP32[iov+(i*8+4)>>2];var curr=FS.read(stream,HEAP8,ptr,len,offset);if(curr<0)return-1;ret+=curr;if(curr>2];var len=HEAP32[iov+(i*8+4)>>2];var curr=FS.write(stream,HEAP8,ptr,len,offset);if(curr<0)return-1;ret+=curr}return ret},varargs:undefined,get:function(){SYSCALLS.varargs+=4;var ret=HEAP32[SYSCALLS.varargs-4>>2];return ret},getStr:function(ptr){var ret=UTF8ToString(ptr);return ret},getStreamFromFD:function(fd){var stream=FS.getStream(fd);if(!stream)throw new FS.ErrnoError(8);return stream},get64:function(low,high){return low}};function ___sys_access(path,amode){try{path=SYSCALLS.getStr(path);return SYSCALLS.doAccess(path,amode)}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_chdir(path){try{path=SYSCALLS.getStr(path);FS.chdir(path);return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_chmod(path,mode){try{path=SYSCALLS.getStr(path);FS.chmod(path,mode);return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}var ERRNO_CODES={EPERM:63,ENOENT:44,ESRCH:71,EINTR:27,EIO:29,ENXIO:60,E2BIG:1,ENOEXEC:45,EBADF:8,ECHILD:12,EAGAIN:6,EWOULDBLOCK:6,ENOMEM:48,EACCES:2,EFAULT:21,ENOTBLK:105,EBUSY:10,EEXIST:20,EXDEV:75,ENODEV:43,ENOTDIR:54,EISDIR:31,EINVAL:28,ENFILE:41,EMFILE:33,ENOTTY:59,ETXTBSY:74,EFBIG:22,ENOSPC:51,ESPIPE:70,EROFS:69,EMLINK:34,EPIPE:64,EDOM:18,ERANGE:68,ENOMSG:49,EIDRM:24,ECHRNG:106,EL2NSYNC:156,EL3HLT:107,EL3RST:108,ELNRNG:109,EUNATCH:110,ENOCSI:111,EL2HLT:112,EDEADLK:16,ENOLCK:46,EBADE:113,EBADR:114,EXFULL:115,ENOANO:104,EBADRQC:103,EBADSLT:102,EDEADLOCK:16,EBFONT:101,ENOSTR:100,ENODATA:116,ETIME:117,ENOSR:118,ENONET:119,ENOPKG:120,EREMOTE:121,ENOLINK:47,EADV:122,ESRMNT:123,ECOMM:124,EPROTO:65,EMULTIHOP:36,EDOTDOT:125,EBADMSG:9,ENOTUNIQ:126,EBADFD:127,EREMCHG:128,ELIBACC:129,ELIBBAD:130,ELIBSCN:131,ELIBMAX:132,ELIBEXEC:133,ENOSYS:52,ENOTEMPTY:55,ENAMETOOLONG:37,ELOOP:32,EOPNOTSUPP:138,EPFNOSUPPORT:139,ECONNRESET:15,ENOBUFS:42,EAFNOSUPPORT:5,EPROTOTYPE:67,ENOTSOCK:57,ENOPROTOOPT:50,ESHUTDOWN:140,ECONNREFUSED:14,EADDRINUSE:3,ECONNABORTED:13,ENETUNREACH:40,ENETDOWN:38,ETIMEDOUT:73,EHOSTDOWN:142,EHOSTUNREACH:23,EINPROGRESS:26,EALREADY:7,EDESTADDRREQ:17,EMSGSIZE:35,EPROTONOSUPPORT:66,ESOCKTNOSUPPORT:137,EADDRNOTAVAIL:4,ENETRESET:39,EISCONN:30,ENOTCONN:53,ETOOMANYREFS:141,EUSERS:136,EDQUOT:19,ESTALE:72,ENOTSUP:138,ENOMEDIUM:148,EILSEQ:25,EOVERFLOW:61,ECANCELED:11,ENOTRECOVERABLE:56,EOWNERDEAD:62,ESTRPIPE:135};var SOCKFS={mount:function(mount){Module["websocket"]=Module["websocket"]&&"object"===typeof Module["websocket"]?Module["websocket"]:{};Module["websocket"]._callbacks={};Module["websocket"]["on"]=function(event,callback){if("function"===typeof callback){this._callbacks[event]=callback}return this};Module["websocket"].emit=function(event,param){if("function"===typeof this._callbacks[event]){this._callbacks[event].call(this,param)}};return FS.createNode(null,"/",16384|511,0)},createSocket:function(family,type,protocol){type&=~526336;var streaming=type==1;if(protocol){assert(streaming==(protocol==6))}var sock={family:family,type:type,protocol:protocol,server:null,error:null,peers:{},pending:[],recv_queue:[],sock_ops:SOCKFS.websocket_sock_ops};var name=SOCKFS.nextname();var node=FS.createNode(SOCKFS.root,name,49152,0);node.sock=sock;var stream=FS.createStream({path:name,node:node,flags:2,seekable:false,stream_ops:SOCKFS.stream_ops});sock.stream=stream;return sock},getSocket:function(fd){var stream=FS.getStream(fd);if(!stream||!FS.isSocket(stream.node.mode)){return null}return stream.node.sock},stream_ops:{poll:function(stream){var sock=stream.node.sock;return sock.sock_ops.poll(sock)},ioctl:function(stream,request,varargs){var sock=stream.node.sock;return sock.sock_ops.ioctl(sock,request,varargs)},read:function(stream,buffer,offset,length,position){var sock=stream.node.sock;var msg=sock.sock_ops.recvmsg(sock,length);if(!msg){return 0}buffer.set(msg.buffer,offset);return msg.buffer.length},write:function(stream,buffer,offset,length,position){var sock=stream.node.sock;return sock.sock_ops.sendmsg(sock,buffer,offset,length)},close:function(stream){var sock=stream.node.sock;sock.sock_ops.close(sock)}},nextname:function(){if(!SOCKFS.nextname.current){SOCKFS.nextname.current=0}return"socket["+SOCKFS.nextname.current+++"]"},websocket_sock_ops:{createPeer:function(sock,addr,port){var ws;if(typeof addr==="object"){ws=addr;addr=null;port=null}if(ws){if(ws._socket){addr=ws._socket.remoteAddress;port=ws._socket.remotePort}else{var result=/ws[s]?:\/\/([^:]+):(\d+)/.exec(ws.url);if(!result){throw new Error("WebSocket URL must be in the format ws(s)://address:port")}addr=result[1];port=parseInt(result[2],10)}}else{try{var runtimeConfig=Module["websocket"]&&"object"===typeof Module["websocket"];var url="ws:#".replace("#","//");if(runtimeConfig){if("string"===typeof Module["websocket"]["url"]){url=Module["websocket"]["url"]}}if(url==="ws://"||url==="wss://"){var parts=addr.split("/");url=url+parts[0]+":"+port+"/"+parts.slice(1).join("/")}var subProtocols="binary";if(runtimeConfig){if("string"===typeof Module["websocket"]["subprotocol"]){subProtocols=Module["websocket"]["subprotocol"]}}var opts=undefined;if(subProtocols!=="null"){subProtocols=subProtocols.replace(/^ +| +$/g,"").split(/ *, */);opts=ENVIRONMENT_IS_NODE?{"protocol":subProtocols.toString()}:subProtocols}if(runtimeConfig&&null===Module["websocket"]["subprotocol"]){subProtocols="null";opts=undefined}var WebSocketConstructor;if(ENVIRONMENT_IS_NODE){WebSocketConstructor=require("ws")}else{WebSocketConstructor=WebSocket}ws=new WebSocketConstructor(url,opts);ws.binaryType="arraybuffer"}catch(e){throw new FS.ErrnoError(ERRNO_CODES.EHOSTUNREACH)}}var peer={addr:addr,port:port,socket:ws,dgram_send_queue:[]};SOCKFS.websocket_sock_ops.addPeer(sock,peer);SOCKFS.websocket_sock_ops.handlePeerEvents(sock,peer);if(sock.type===2&&typeof sock.sport!=="undefined"){peer.dgram_send_queue.push(new Uint8Array([255,255,255,255,"p".charCodeAt(0),"o".charCodeAt(0),"r".charCodeAt(0),"t".charCodeAt(0),(sock.sport&65280)>>8,sock.sport&255]))}return peer},getPeer:function(sock,addr,port){return sock.peers[addr+":"+port]},addPeer:function(sock,peer){sock.peers[peer.addr+":"+peer.port]=peer},removePeer:function(sock,peer){delete sock.peers[peer.addr+":"+peer.port]},handlePeerEvents:function(sock,peer){var first=true;var handleOpen=function(){Module["websocket"].emit("open",sock.stream.fd);try{var queued=peer.dgram_send_queue.shift();while(queued){peer.socket.send(queued);queued=peer.dgram_send_queue.shift()}}catch(e){peer.socket.close()}};function handleMessage(data){if(typeof data==="string"){var encoder=new TextEncoder;data=encoder.encode(data)}else{assert(data.byteLength!==undefined);if(data.byteLength==0){return}else{data=new Uint8Array(data)}}var wasfirst=first;first=false;if(wasfirst&&data.length===10&&data[0]===255&&data[1]===255&&data[2]===255&&data[3]===255&&data[4]==="p".charCodeAt(0)&&data[5]==="o".charCodeAt(0)&&data[6]==="r".charCodeAt(0)&&data[7]==="t".charCodeAt(0)){var newport=data[8]<<8|data[9];SOCKFS.websocket_sock_ops.removePeer(sock,peer);peer.port=newport;SOCKFS.websocket_sock_ops.addPeer(sock,peer);return}sock.recv_queue.push({addr:peer.addr,port:peer.port,data:data});Module["websocket"].emit("message",sock.stream.fd)}if(ENVIRONMENT_IS_NODE){peer.socket.on("open",handleOpen);peer.socket.on("message",function(data,flags){if(!flags.binary){return}handleMessage(new Uint8Array(data).buffer)});peer.socket.on("close",function(){Module["websocket"].emit("close",sock.stream.fd)});peer.socket.on("error",function(error){sock.error=ERRNO_CODES.ECONNREFUSED;Module["websocket"].emit("error",[sock.stream.fd,sock.error,"ECONNREFUSED: Connection refused"])})}else{peer.socket.onopen=handleOpen;peer.socket.onclose=function(){Module["websocket"].emit("close",sock.stream.fd)};peer.socket.onmessage=function peer_socket_onmessage(event){handleMessage(event.data)};peer.socket.onerror=function(error){sock.error=ERRNO_CODES.ECONNREFUSED;Module["websocket"].emit("error",[sock.stream.fd,sock.error,"ECONNREFUSED: Connection refused"])}}},poll:function(sock){if(sock.type===1&&sock.server){return sock.pending.length?64|1:0}var mask=0;var dest=sock.type===1?SOCKFS.websocket_sock_ops.getPeer(sock,sock.daddr,sock.dport):null;if(sock.recv_queue.length||!dest||dest&&dest.socket.readyState===dest.socket.CLOSING||dest&&dest.socket.readyState===dest.socket.CLOSED){mask|=64|1}if(!dest||dest&&dest.socket.readyState===dest.socket.OPEN){mask|=4}if(dest&&dest.socket.readyState===dest.socket.CLOSING||dest&&dest.socket.readyState===dest.socket.CLOSED){mask|=16}return mask},ioctl:function(sock,request,arg){switch(request){case 21531:var bytes=0;if(sock.recv_queue.length){bytes=sock.recv_queue[0].data.length}HEAP32[arg>>2]=bytes;return 0;default:return ERRNO_CODES.EINVAL}},close:function(sock){if(sock.server){try{sock.server.close()}catch(e){}sock.server=null}var peers=Object.keys(sock.peers);for(var i=0;i>8&255)+"."+(addr>>16&255)+"."+(addr>>24&255)}function inetNtop6(ints){var str="";var word=0;var longest=0;var lastzero=0;var zstart=0;var len=0;var i=0;var parts=[ints[0]&65535,ints[0]>>16,ints[1]&65535,ints[1]>>16,ints[2]&65535,ints[2]>>16,ints[3]&65535,ints[3]>>16];var hasipv4=true;var v4part="";for(i=0;i<5;i++){if(parts[i]!==0){hasipv4=false;break}}if(hasipv4){v4part=inetNtop4(parts[6]|parts[7]<<16);if(parts[5]===-1){str="::ffff:";str+=v4part;return str}if(parts[5]===0){str="::";if(v4part==="0.0.0.0")v4part="";if(v4part==="0.0.0.1")v4part="1";str+=v4part;return str}}for(word=0;word<8;word++){if(parts[word]===0){if(word-lastzero>1){len=0}lastzero=word;len++}if(len>longest){longest=len;zstart=word-longest+1}}for(word=0;word<8;word++){if(longest>1){if(parts[word]===0&&word>=zstart&&word>1];var port=_ntohs(HEAPU16[sa+2>>1]);var addr;switch(family){case 2:if(salen!==16){return{errno:28}}addr=HEAP32[sa+4>>2];addr=inetNtop4(addr);break;case 10:if(salen!==28){return{errno:28}}addr=[HEAP32[sa+8>>2],HEAP32[sa+12>>2],HEAP32[sa+16>>2],HEAP32[sa+20>>2]];addr=inetNtop6(addr);break;default:return{errno:5}}return{family:family,addr:addr,port:port}}function getSocketAddress(addrp,addrlen,allowNull){if(allowNull&&addrp===0)return null;var info=readSockaddr(addrp,addrlen);if(info.errno)throw new FS.ErrnoError(info.errno);info.addr=DNS.lookup_addr(info.addr)||info.addr;return info}function ___sys_connect(fd,addr,addrlen){try{var sock=getSocketFromFD(fd);var info=getSocketAddress(addr,addrlen);sock.sock_ops.connect(sock,info.addr,info.port);return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_fadvise64_64(fd,offset,len,advice){return 0}function ___sys_fchmod(fd,mode){try{FS.fchmod(fd,mode);return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_fcntl64(fd,cmd,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(fd);switch(cmd){case 0:{var arg=SYSCALLS.get();if(arg<0){return-28}var newStream;newStream=FS.open(stream.path,stream.flags,0,arg);return newStream.fd}case 1:case 2:return 0;case 3:return stream.flags;case 4:{var arg=SYSCALLS.get();stream.flags|=arg;return 0}case 12:{var arg=SYSCALLS.get();var offset=0;HEAP16[arg+offset>>1]=2;return 0}case 13:case 14:return 0;case 16:case 8:return-28;case 9:setErrNo(28);return-1;default:{return-28}}}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_fstat64(fd,buf){try{var stream=SYSCALLS.getStreamFromFD(fd);return SYSCALLS.doStat(FS.stat,stream.path,buf)}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_fstatfs64(fd,size,buf){try{var stream=SYSCALLS.getStreamFromFD(fd);return ___sys_statfs64(0,size,buf)}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_ftruncate64(fd,zero,low,high){try{var length=SYSCALLS.get64(low,high);FS.ftruncate(fd,length);return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_getcwd(buf,size){try{if(size===0)return-28;var cwd=FS.cwd();var cwdLengthInBytes=lengthBytesUTF8(cwd);if(size>>0,(tempDouble=id,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[dirp+pos>>2]=tempI64[0],HEAP32[dirp+pos+4>>2]=tempI64[1];tempI64=[(idx+1)*struct_size>>>0,(tempDouble=(idx+1)*struct_size,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[dirp+pos+8>>2]=tempI64[0],HEAP32[dirp+pos+12>>2]=tempI64[1];HEAP16[dirp+pos+16>>1]=280;HEAP8[dirp+pos+18>>0]=type;stringToUTF8(name,dirp+pos+19,256);pos+=struct_size;idx+=1}FS.llseek(stream,idx*struct_size,0);return pos}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_getpid(){return 42}function ___sys_getrusage(who,usage){try{_memset(usage,0,136);HEAP32[usage>>2]=1;HEAP32[usage+4>>2]=2;HEAP32[usage+8>>2]=3;HEAP32[usage+12>>2]=4;return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_ioctl(fd,op,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(fd);switch(op){case 21509:case 21505:{if(!stream.tty)return-59;return 0}case 21510:case 21511:case 21512:case 21506:case 21507:case 21508:{if(!stream.tty)return-59;return 0}case 21519:{if(!stream.tty)return-59;var argp=SYSCALLS.get();HEAP32[argp>>2]=0;return 0}case 21520:{if(!stream.tty)return-59;return-28}case 21531:{var argp=SYSCALLS.get();return FS.ioctl(stream,op,argp)}case 21523:{if(!stream.tty)return-59;return 0}case 21524:{if(!stream.tty)return-59;return 0}default:abort("bad ioctl syscall "+op)}}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_link(oldpath,newpath){return-34}function ___sys_lstat64(path,buf){try{path=SYSCALLS.getStr(path);return SYSCALLS.doStat(FS.lstat,path,buf)}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_madvise1(addr,length,advice){return 0}function ___sys_mkdir(path,mode){try{path=SYSCALLS.getStr(path);return SYSCALLS.doMkdir(path,mode)}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function syscallMmap2(addr,len,prot,flags,fd,off){off<<=12;var ptr;var allocated=false;if((flags&16)!==0&&addr%65536!==0){return-28}if((flags&32)!==0){ptr=_memalign(65536,len);if(!ptr)return-48;_memset(ptr,0,len);allocated=true}else{var info=FS.getStream(fd);if(!info)return-8;var res=FS.mmap(info,addr,len,off,prot,flags);ptr=res.ptr;allocated=res.allocated}SYSCALLS.mappings[ptr]={malloc:ptr,len:len,allocated:allocated,fd:fd,prot:prot,flags:flags,offset:off};return ptr}function ___sys_mmap2(addr,len,prot,flags,fd,off){try{return syscallMmap2(addr,len,prot,flags,fd,off)}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_msync(addr,len,flags){try{var info=SYSCALLS.mappings[addr];if(!info)return 0;SYSCALLS.doMsync(addr,FS.getStream(info.fd),len,info.flags,0);return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function syscallMunmap(addr,len){if((addr|0)===-1||len===0){return-28}var info=SYSCALLS.mappings[addr];if(!info)return 0;if(len===info.len){var stream=FS.getStream(info.fd);if(stream){if(info.prot&2){SYSCALLS.doMsync(addr,stream,len,info.flags,info.offset)}FS.munmap(stream)}SYSCALLS.mappings[addr]=null;if(info.allocated){_free(info.malloc)}}return 0}function ___sys_munmap(addr,len){try{return syscallMunmap(addr,len)}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_open(path,flags,varargs){SYSCALLS.varargs=varargs;try{var pathname=SYSCALLS.getStr(path);var mode=varargs?SYSCALLS.get():0;var stream=FS.open(pathname,flags,mode);return stream.fd}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_readlink(path,buf,bufsize){try{path=SYSCALLS.getStr(path);return SYSCALLS.doReadlink(path,buf,bufsize)}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function inetPton4(str){var b=str.split(".");for(var i=0;i<4;i++){var tmp=Number(b[i]);if(isNaN(tmp))return null;b[i]=tmp}return(b[0]|b[1]<<8|b[2]<<16|b[3]<<24)>>>0}function jstoi_q(str){return parseInt(str)}function inetPton6(str){var words;var w,offset,z;var valid6regx=/^((?=.*::)(?!.*::.+::)(::)?([\dA-F]{1,4}:(:|\b)|){5}|([\dA-F]{1,4}:){6})((([\dA-F]{1,4}((?!\3)::|:\b|$))|(?!\2\3)){2}|(((2[0-4]|1\d|[1-9])?\d|25[0-5])\.?\b){4})$/i;var parts=[];if(!valid6regx.test(str)){return null}if(str==="::"){return[0,0,0,0,0,0,0,0]}if(str.startsWith("::")){str=str.replace("::","Z:")}else{str=str.replace("::",":Z:")}if(str.indexOf(".")>0){str=str.replace(new RegExp("[.]","g"),":");words=str.split(":");words[words.length-4]=jstoi_q(words[words.length-4])+jstoi_q(words[words.length-3])*256;words[words.length-3]=jstoi_q(words[words.length-2])+jstoi_q(words[words.length-1])*256;words=words.slice(0,words.length-2)}else{words=str.split(":")}offset=0;z=0;for(w=0;w>2]=16}HEAP16[sa>>1]=family;HEAP32[sa+4>>2]=addr;HEAP16[sa+2>>1]=_htons(port);tempI64=[0>>>0,(tempDouble=0,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[sa+8>>2]=tempI64[0],HEAP32[sa+12>>2]=tempI64[1];break;case 10:addr=inetPton6(addr);if(addrlen){HEAP32[addrlen>>2]=28}HEAP32[sa>>2]=family;HEAP32[sa+8>>2]=addr[0];HEAP32[sa+12>>2]=addr[1];HEAP32[sa+16>>2]=addr[2];HEAP32[sa+20>>2]=addr[3];HEAP16[sa+2>>1]=_htons(port);HEAP32[sa+4>>2]=0;HEAP32[sa+24>>2]=0;break;default:return 5}return 0}var DNS={address_map:{id:1,addrs:{},names:{}},lookup_name:function(name){var res=inetPton4(name);if(res!==null){return name}res=inetPton6(name);if(res!==null){return name}var addr;if(DNS.address_map.addrs[name]){addr=DNS.address_map.addrs[name]}else{var id=DNS.address_map.id++;assert(id<65535,"exceeded max address mappings of 65535");addr="172.29."+(id&255)+"."+(id&65280);DNS.address_map.names[addr]=name;DNS.address_map.addrs[name]=addr}return addr},lookup_addr:function(addr){if(DNS.address_map.names[addr]){return DNS.address_map.names[addr]}return null}};function ___sys_recvfrom(fd,buf,len,flags,addr,addrlen){try{var sock=getSocketFromFD(fd);var msg=sock.sock_ops.recvmsg(sock,len);if(!msg)return 0;if(addr){var errno=writeSockaddr(addr,sock.family,DNS.lookup_name(msg.addr),msg.port,addrlen)}HEAPU8.set(msg.buffer,buf);return msg.buffer.byteLength}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_rename(old_path,new_path){try{old_path=SYSCALLS.getStr(old_path);new_path=SYSCALLS.getStr(new_path);FS.rename(old_path,new_path);return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_rmdir(path){try{path=SYSCALLS.getStr(path);FS.rmdir(path);return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_sendto(fd,message,length,flags,addr,addr_len){try{var sock=getSocketFromFD(fd);var dest=getSocketAddress(addr,addr_len,true);if(!dest){return FS.write(sock.stream,HEAP8,message,length)}else{return sock.sock_ops.sendmsg(sock,HEAP8,message,length,dest.addr,dest.port)}}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_setsockopt(fd){try{return-50}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_shutdown(fd,how){try{getSocketFromFD(fd);return-52}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_socket(domain,type,protocol){try{var sock=SOCKFS.createSocket(domain,type,protocol);return sock.stream.fd}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_stat64(path,buf){try{path=SYSCALLS.getStr(path);return SYSCALLS.doStat(FS.stat,path,buf)}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_symlink(target,linkpath){try{target=SYSCALLS.getStr(target);linkpath=SYSCALLS.getStr(linkpath);FS.symlink(target,linkpath);return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_unlink(path){try{path=SYSCALLS.getStr(path);FS.unlink(path);return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_utimensat(dirfd,path,times,flags){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path,true);var seconds=HEAP32[times>>2];var nanoseconds=HEAP32[times+4>>2];var atime=seconds*1e3+nanoseconds/(1e3*1e3);times+=8;seconds=HEAP32[times>>2];nanoseconds=HEAP32[times+4>>2];var mtime=seconds*1e3+nanoseconds/(1e3*1e3);FS.utime(path,atime,mtime);return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function _abort(){abort()}function _emscripten_get_now_res(){if(ENVIRONMENT_IS_NODE){return 1}else if(typeof dateNow!=="undefined"){return 1e3}else return 1e3}function _clock_getres(clk_id,res){var nsec;if(clk_id===0){nsec=1e3*1e3}else if(clk_id===1&&_emscripten_get_now_is_monotonic){nsec=_emscripten_get_now_res()}else{setErrNo(28);return-1}HEAP32[res>>2]=nsec/1e9|0;HEAP32[res+4>>2]=nsec;return 0}function _difftime(time1,time0){return time1-time0}var DOTNETENTROPY={batchedQuotaMax:65536,getBatchedRandomValues:function(buffer,bufferLength){for(var i=0;i>=2;while(ch=HEAPU8[sigPtr++]){var double=ch<105;if(double&&buf&1)buf++;readAsmConstArgsArray.push(double?HEAPF64[buf++>>1]:HEAP32[buf]);++buf}return readAsmConstArgsArray}function _emscripten_asm_const_int(code,sigPtr,argbuf){var args=readAsmConstArgs(sigPtr,argbuf);return ASM_CONSTS[code].apply(null,args)}function _emscripten_get_heap_max(){return 2147483648}function _emscripten_memcpy_big(dest,src,num){HEAPU8.copyWithin(dest,src,src+num)}function emscripten_realloc_buffer(size){try{wasmMemory.grow(size-buffer.byteLength+65535>>>16);updateGlobalBufferAndViews(wasmMemory.buffer);return 1}catch(e){}}function _emscripten_resize_heap(requestedSize){var oldSize=HEAPU8.length;requestedSize=requestedSize>>>0;var maxHeapSize=2147483648;if(requestedSize>maxHeapSize){return false}for(var cutDown=1;cutDown<=4;cutDown*=2){var overGrownHeapSize=oldSize*(1+.2/cutDown);overGrownHeapSize=Math.min(overGrownHeapSize,requestedSize+100663296);var newSize=Math.min(maxHeapSize,alignUp(Math.max(requestedSize,overGrownHeapSize),65536));var replacement=emscripten_realloc_buffer(newSize);if(replacement){return true}}return false}function _emscripten_thread_sleep(msecs){var start=_emscripten_get_now();while(_emscripten_get_now()-start>2]=strings.length;var bufSize=0;strings.forEach(function(string){bufSize+=string.length+1});HEAP32[penviron_buf_size>>2]=bufSize;return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return e.errno}}function _exit(status){exit(status)}function _fd_close(fd){try{var stream=SYSCALLS.getStreamFromFD(fd);FS.close(stream);return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return e.errno}}function _fd_fdstat_get(fd,pbuf){try{var stream=SYSCALLS.getStreamFromFD(fd);var type=stream.tty?2:FS.isDir(stream.mode)?3:FS.isLink(stream.mode)?7:4;HEAP8[pbuf>>0]=type;return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return e.errno}}function _fd_pread(fd,iov,iovcnt,offset_low,offset_high,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=SYSCALLS.doReadv(stream,iov,iovcnt,offset_low);HEAP32[pnum>>2]=num;return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return e.errno}}function _fd_pwrite(fd,iov,iovcnt,offset_low,offset_high,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=SYSCALLS.doWritev(stream,iov,iovcnt,offset_low);HEAP32[pnum>>2]=num;return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return e.errno}}function _fd_read(fd,iov,iovcnt,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=SYSCALLS.doReadv(stream,iov,iovcnt);HEAP32[pnum>>2]=num;return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return e.errno}}function _fd_seek(fd,offset_low,offset_high,whence,newOffset){try{var stream=SYSCALLS.getStreamFromFD(fd);var HIGH_OFFSET=4294967296;var offset=offset_high*HIGH_OFFSET+(offset_low>>>0);var DOUBLE_LIMIT=9007199254740992;if(offset<=-DOUBLE_LIMIT||offset>=DOUBLE_LIMIT){return-61}FS.llseek(stream,offset,whence);tempI64=[stream.position>>>0,(tempDouble=stream.position,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[newOffset>>2]=tempI64[0],HEAP32[newOffset+4>>2]=tempI64[1];if(stream.getdents&&offset===0&&whence===0)stream.getdents=null;return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return e.errno}}function _fd_sync(fd){try{var stream=SYSCALLS.getStreamFromFD(fd);if(stream.stream_ops&&stream.stream_ops.fsync){return-stream.stream_ops.fsync(stream)}return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return e.errno}}function _fd_write(fd,iov,iovcnt,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=SYSCALLS.doWritev(stream,iov,iovcnt);HEAP32[pnum>>2]=num;return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return e.errno}}function _flock(fd,operation){return 0}var GAI_ERRNO_MESSAGES={};function _gai_strerror(val){var buflen=256;if(!_gai_strerror.buffer){_gai_strerror.buffer=_malloc(buflen);GAI_ERRNO_MESSAGES["0"]="Success";GAI_ERRNO_MESSAGES[""+-1]="Invalid value for 'ai_flags' field";GAI_ERRNO_MESSAGES[""+-2]="NAME or SERVICE is unknown";GAI_ERRNO_MESSAGES[""+-3]="Temporary failure in name resolution";GAI_ERRNO_MESSAGES[""+-4]="Non-recoverable failure in name res";GAI_ERRNO_MESSAGES[""+-6]="'ai_family' not supported";GAI_ERRNO_MESSAGES[""+-7]="'ai_socktype' not supported";GAI_ERRNO_MESSAGES[""+-8]="SERVICE not supported for 'ai_socktype'";GAI_ERRNO_MESSAGES[""+-10]="Memory allocation failure";GAI_ERRNO_MESSAGES[""+-11]="System error returned in 'errno'";GAI_ERRNO_MESSAGES[""+-12]="Argument buffer overflow"}var msg="Unknown error";if(val in GAI_ERRNO_MESSAGES){if(GAI_ERRNO_MESSAGES[val].length>buflen-1){msg="Message too long"}else{msg=GAI_ERRNO_MESSAGES[val]}}writeAsciiToMemory(msg,_gai_strerror.buffer);return _gai_strerror.buffer}function _getTempRet0(){return getTempRet0()}function _gettimeofday(ptr){var now=Date.now();HEAP32[ptr>>2]=now/1e3|0;HEAP32[ptr+4>>2]=now%1e3*1e3|0;return 0}function _gmtime_r(time,tmPtr){var date=new Date(HEAP32[time>>2]*1e3);HEAP32[tmPtr>>2]=date.getUTCSeconds();HEAP32[tmPtr+4>>2]=date.getUTCMinutes();HEAP32[tmPtr+8>>2]=date.getUTCHours();HEAP32[tmPtr+12>>2]=date.getUTCDate();HEAP32[tmPtr+16>>2]=date.getUTCMonth();HEAP32[tmPtr+20>>2]=date.getUTCFullYear()-1900;HEAP32[tmPtr+24>>2]=date.getUTCDay();HEAP32[tmPtr+36>>2]=0;HEAP32[tmPtr+32>>2]=0;var start=Date.UTC(date.getUTCFullYear(),0,1,0,0,0,0);var yday=(date.getTime()-start)/(1e3*60*60*24)|0;HEAP32[tmPtr+28>>2]=yday;if(!_gmtime_r.GMTString)_gmtime_r.GMTString=allocateUTF8("GMT");HEAP32[tmPtr+40>>2]=_gmtime_r.GMTString;return tmPtr}function _llvm_eh_typeid_for(type){return type}function _tzset(){if(_tzset.called)return;_tzset.called=true;var currentYear=(new Date).getFullYear();var winter=new Date(currentYear,0,1);var summer=new Date(currentYear,6,1);var winterOffset=winter.getTimezoneOffset();var summerOffset=summer.getTimezoneOffset();var stdTimezoneOffset=Math.max(winterOffset,summerOffset);HEAP32[__get_timezone()>>2]=stdTimezoneOffset*60;HEAP32[__get_daylight()>>2]=Number(winterOffset!=summerOffset);function extractZone(date){var match=date.toTimeString().match(/\(([A-Za-z ]+)\)$/);return match?match[1]:"GMT"}var winterName=extractZone(winter);var summerName=extractZone(summer);var winterNamePtr=allocateUTF8(winterName);var summerNamePtr=allocateUTF8(summerName);if(summerOffset>2]=winterNamePtr;HEAP32[__get_tzname()+4>>2]=summerNamePtr}else{HEAP32[__get_tzname()>>2]=summerNamePtr;HEAP32[__get_tzname()+4>>2]=winterNamePtr}}function _localtime_r(time,tmPtr){_tzset();var date=new Date(HEAP32[time>>2]*1e3);HEAP32[tmPtr>>2]=date.getSeconds();HEAP32[tmPtr+4>>2]=date.getMinutes();HEAP32[tmPtr+8>>2]=date.getHours();HEAP32[tmPtr+12>>2]=date.getDate();HEAP32[tmPtr+16>>2]=date.getMonth();HEAP32[tmPtr+20>>2]=date.getFullYear()-1900;HEAP32[tmPtr+24>>2]=date.getDay();var start=new Date(date.getFullYear(),0,1);var yday=(date.getTime()-start.getTime())/(1e3*60*60*24)|0;HEAP32[tmPtr+28>>2]=yday;HEAP32[tmPtr+36>>2]=-(date.getTimezoneOffset()*60);var summerOffset=new Date(date.getFullYear(),6,1).getTimezoneOffset();var winterOffset=start.getTimezoneOffset();var dst=(summerOffset!=winterOffset&&date.getTimezoneOffset()==Math.min(winterOffset,summerOffset))|0;HEAP32[tmPtr+32>>2]=dst;var zonePtr=HEAP32[__get_tzname()+(dst?4:0)>>2];HEAP32[tmPtr+40>>2]=zonePtr;return tmPtr}var MONO={pump_count:0,timeout_queue:[],spread_timers_maximum:0,_vt_stack:[],mono_wasm_runtime_is_ready:false,mono_wasm_ignore_pdb_load_errors:true,_id_table:{},pump_message:function(){if(!this.mono_background_exec)this.mono_background_exec=Module.cwrap("mono_background_exec",null);while(MONO.timeout_queue.length>0){--MONO.pump_count;MONO.timeout_queue.shift()()}while(MONO.pump_count>0){--MONO.pump_count;this.mono_background_exec()}},export_functions:function(module){module["pump_message"]=MONO.pump_message.bind(MONO);module["prevent_timer_throttling"]=MONO.prevent_timer_throttling.bind(MONO);module["mono_wasm_set_timeout_exec"]=MONO.mono_wasm_set_timeout_exec.bind(MONO);module["mono_load_runtime_and_bcl"]=MONO.mono_load_runtime_and_bcl.bind(MONO);module["mono_load_runtime_and_bcl_args"]=MONO.mono_load_runtime_and_bcl_args.bind(MONO);module["mono_wasm_load_bytes_into_heap"]=MONO.mono_wasm_load_bytes_into_heap.bind(MONO);module["mono_wasm_load_icu_data"]=MONO.mono_wasm_load_icu_data.bind(MONO);module["mono_wasm_get_icudt_name"]=MONO.mono_wasm_get_icudt_name.bind(MONO);module["mono_wasm_globalization_init"]=MONO.mono_wasm_globalization_init.bind(MONO);module["mono_wasm_get_loaded_files"]=MONO.mono_wasm_get_loaded_files.bind(MONO);module["mono_wasm_new_root_buffer"]=MONO.mono_wasm_new_root_buffer.bind(MONO);module["mono_wasm_new_root_buffer_from_pointer"]=MONO.mono_wasm_new_root_buffer_from_pointer.bind(MONO);module["mono_wasm_new_root"]=MONO.mono_wasm_new_root.bind(MONO);module["mono_wasm_new_roots"]=MONO.mono_wasm_new_roots.bind(MONO);module["mono_wasm_release_roots"]=MONO.mono_wasm_release_roots.bind(MONO);module["mono_wasm_load_config"]=MONO.mono_wasm_load_config.bind(MONO)},_base64Converter:{_base64Table:["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","+","/"],_makeByteReader:function(bytes,index,count){var position=typeof index==="number"?index:0;var endpoint;if(typeof count==="number")endpoint=position+count;else endpoint=bytes.length-position;var result={read:function(){if(position>=endpoint)return false;var nextByte=bytes[position];position+=1;return nextByte}};Object.defineProperty(result,"eof",{get:function(){return position>=endpoint},configurable:true,enumerable:true});return result},toBase64StringImpl:function(inArray,offset,length){var reader=this._makeByteReader(inArray,offset,length);var result="";var ch1=0,ch2=0,ch3=0,bits=0,equalsCount=0,sum=0;var mask1=(1<<24)-1,mask2=(1<<18)-1,mask3=(1<<12)-1,mask4=(1<<6)-1;var shift1=18,shift2=12,shift3=6,shift4=0;while(true){ch1=reader.read();ch2=reader.read();ch3=reader.read();if(ch1===false)break;if(ch2===false){ch2=0;equalsCount+=1}if(ch3===false){ch3=0;equalsCount+=1}sum=ch1<<16|ch2<<8|ch3<<0;bits=(sum&mask1)>>shift1;result+=this._base64Table[bits];bits=(sum&mask2)>>shift2;result+=this._base64Table[bits];if(equalsCount<2){bits=(sum&mask3)>>shift3;result+=this._base64Table[bits]}if(equalsCount===2){result+="=="}else if(equalsCount===1){result+="="}else{bits=(sum&mask4)>>shift4;result+=this._base64Table[bits]}}return result}},_mono_wasm_root_buffer_prototype:{_throw_index_out_of_range:function(){throw new Error("index out of range")},_check_in_range:function(index){if(index>=this.__count||index<0)this._throw_index_out_of_range()},get_address:function(index){this._check_in_range(index);return this.__offset+index*4},get_address_32:function(index){this._check_in_range(index);return this.__offset32+index},get:function(index){this._check_in_range(index);return Module.HEAP32[this.get_address_32(index)]},set:function(index,value){Module.HEAP32[this.get_address_32(index)]=value;return value},_unsafe_get:function(index){return Module.HEAP32[this.__offset32+index]},_unsafe_set:function(index,value){Module.HEAP32[this.__offset32+index]=value},clear:function(){if(this.__offset)MONO._zero_region(this.__offset,this.__count*4)},release:function(){if(this.__offset&&this.__ownsAllocation){MONO.mono_wasm_deregister_root(this.__offset);MONO._zero_region(this.__offset,this.__count*4);Module._free(this.__offset)}this.__handle=this.__offset=this.__count=this.__offset32=0},toString:function(){return"[root buffer @"+this.get_address(0)+", size "+this.__count+"]"}},_scratch_root_buffer:null,_scratch_root_free_indices:null,_scratch_root_free_indices_count:0,_scratch_root_free_instances:[],_mono_wasm_root_prototype:{get_address:function(){return this.__buffer.get_address(this.__index)},get_address_32:function(){return this.__buffer.get_address_32(this.__index)},get:function(){var result=this.__buffer._unsafe_get(this.__index);return result},set:function(value){this.__buffer._unsafe_set(this.__index,value);return value},valueOf:function(){return this.get()},clear:function(){this.set(0)},release:function(){const maxPooledInstances=128;if(MONO._scratch_root_free_instances.length>maxPooledInstances){MONO._mono_wasm_release_scratch_index(this.__index);this.__buffer=0;this.__index=0}else{this.set(0);MONO._scratch_root_free_instances.push(this)}},toString:function(){return"[root @"+this.get_address()+"]"}},_mono_wasm_release_scratch_index:function(index){if(index===undefined)return;this._scratch_root_buffer.set(index,0);this._scratch_root_free_indices[this._scratch_root_free_indices_count]=index;this._scratch_root_free_indices_count++},_mono_wasm_claim_scratch_index:function(){if(!this._scratch_root_buffer){const maxScratchRoots=8192;this._scratch_root_buffer=this.mono_wasm_new_root_buffer(maxScratchRoots,"js roots");this._scratch_root_free_indices=new Int32Array(maxScratchRoots);this._scratch_root_free_indices_count=maxScratchRoots;for(var i=0;i= 1");capacity=capacity|0;var capacityBytes=capacity*4;var offset=Module._malloc(capacityBytes);if(offset%4!==0)throw new Error("Malloc returned an unaligned offset");this._zero_region(offset,capacityBytes);var result=Object.create(this._mono_wasm_root_buffer_prototype);result.__offset=offset;result.__offset32=offset/4|0;result.__count=capacity;result.length=capacity;result.__handle=this.mono_wasm_register_root(offset,capacityBytes,msg||0);result.__ownsAllocation=true;return result},mono_wasm_new_root_buffer_from_pointer:function(offset,capacity,msg){if(!this.mono_wasm_register_root||!this.mono_wasm_deregister_root){this.mono_wasm_register_root=Module.cwrap("mono_wasm_register_root","number",["number","number","string"]);this.mono_wasm_deregister_root=Module.cwrap("mono_wasm_deregister_root",null,["number"])}if(capacity<=0)throw new Error("capacity >= 1");capacity=capacity|0;var capacityBytes=capacity*4;if(offset%4!==0)throw new Error("Unaligned offset");this._zero_region(offset,capacityBytes);var result=Object.create(this._mono_wasm_root_buffer_prototype);result.__offset=offset;result.__offset32=offset/4|0;result.__count=capacity;result.length=capacity;result.__handle=this.mono_wasm_register_root(offset,capacityBytes,msg||0);result.__ownsAllocation=false;return result},mono_wasm_new_root:function(value){var result;if(this._scratch_root_free_instances.length>0){result=this._scratch_root_free_instances.pop()}else{var index=this._mono_wasm_claim_scratch_index();var buffer=this._scratch_root_buffer;result=Object.create(this._mono_wasm_root_prototype);result.__buffer=buffer;result.__index=index}if(value!==undefined){if(typeof value!=="number")throw new Error("value must be an address in the managed heap");result.set(value)}else{result.set(0)}return result},mono_wasm_new_roots:function(count_or_values){var result;if(Array.isArray(count_or_values)){result=new Array(count_or_values.length);for(var i=0;i0){result=new Array(count_or_values);for(var i=0;ithis._debugger_buffer_len){if(this._debugger_buffer)Module._free(this._debugger_buffer);this._debugger_buffer_len=Math.max(command_parameters.length,this._debugger_buffer_len,256);this._debugger_buffer=Module._malloc(this._debugger_buffer_len)}this._debugger_heap_bytes=new Uint8Array(Module.HEAPU8.buffer,this._debugger_buffer,this._debugger_buffer_len);this._debugger_heap_bytes.set(this._base64_to_uint8(command_parameters))},mono_wasm_send_dbg_command_with_parms:function(id,command_set,command,command_parameters,length,valtype,newvalue){this.mono_wasm_malloc_and_set_debug_buffer(command_parameters);this._c_fn_table.mono_wasm_send_dbg_command_with_parms_wrapper(id,command_set,command,this._debugger_buffer,length,valtype,newvalue.toString());let{res_ok:res_ok,res:res}=MONO.commands_received.remove(id);if(!res_ok)throw new Error(`Failed on mono_wasm_invoke_method_debugger_agent_with_parms`);return res},mono_wasm_send_dbg_command:function(id,command_set,command,command_parameters){this.mono_wasm_malloc_and_set_debug_buffer(command_parameters);this._c_fn_table.mono_wasm_send_dbg_command_wrapper(id,command_set,command,this._debugger_buffer,command_parameters.length);let{res_ok:res_ok,res:res}=MONO.commands_received.remove(id);if(!res_ok)throw new Error(`Failed on mono_wasm_send_dbg_command`);return res},mono_wasm_get_dbg_command_info:function(){let{res_ok:res_ok,res:res}=MONO.commands_received.remove(0);if(!res_ok)throw new Error(`Failed on mono_wasm_get_dbg_command_info`);return res},_get_cfo_res_details:function(objectId,args){if(!(objectId in this._call_function_res_cache))throw new Error(`Could not find any object with id ${objectId}`);const real_obj=this._call_function_res_cache[objectId];const descriptors=Object.getOwnPropertyDescriptors(real_obj);if(args.accessorPropertiesOnly){Object.keys(descriptors).forEach(k=>{if(descriptors[k].get===undefined)Reflect.deleteProperty(descriptors,k)})}let res_details=[];Object.keys(descriptors).forEach(k=>{let new_obj;let prop_desc=descriptors[k];if(typeof prop_desc.value=="object"){new_obj=Object.assign({name:k},prop_desc)}else if(prop_desc.value!==undefined){new_obj={name:k,value:Object.assign({type:typeof prop_desc.value,description:""+prop_desc.value},prop_desc)}}else if(prop_desc.get!==undefined){new_obj={name:k,get:{className:"Function",description:`get ${k} () {}`,type:"function"}}}else{new_obj={name:k,value:{type:"symbol",value:"",description:""}}}res_details.push(new_obj)});return{__value_as_json_string__:JSON.stringify(res_details)}},mono_wasm_get_details:function(objectId,args={}){return this._get_cfo_res_details(`dotnet:cfo_res:${objectId}`,args)},_cache_call_function_res:function(obj){const id=`dotnet:cfo_res:${this._next_call_function_res_id++}`;this._call_function_res_cache[id]=obj;return id},mono_wasm_release_object:function(objectId){if(objectId in this._cache_call_function_res)delete this._cache_call_function_res[objectId]},_create_proxy_from_object_id:function(objectId,details){if(objectId.startsWith("dotnet:array:")){if(details.items===undefined){const ret=details.map(p=>p.value);return ret}if(details.dimensionsDetails==undefined||details.dimensionsDetails.length==1){const ret=details.items.map(p=>p.value);return ret}}let proxy={};Object.keys(details).forEach(p=>{var prop=details[p];if(prop.get!==undefined){Object.defineProperty(proxy,prop.name,{get(){return MONO.mono_wasm_send_dbg_command(prop.get.id,prop.get.commandSet,prop.get.command,prop.get.buffer,prop.get.length)},set:function(newValue){MONO.mono_wasm_send_dbg_command_with_parms(prop.set.id,prop.set.commandSet,prop.set.command,prop.set.buffer,prop.set.length,prop.set.valtype,newValue);return true}})}else if(prop.set!==undefined){Object.defineProperty(proxy,prop.name,{get(){return prop.value},set:function(newValue){MONO.mono_wasm_send_dbg_command_with_parms(prop.set.id,prop.set.commandSet,prop.set.command,prop.set.buffer,prop.set.length,prop.set.valtype,newValue);return true}})}else{proxy[prop.name]=prop.value}});return proxy},mono_wasm_call_function_on:function(request){if(request.arguments!=undefined&&!Array.isArray(request.arguments))throw new Error(`"arguments" should be an array, but was ${request.arguments}`);const objId=request.objectId;const details=request.details;let proxy;if(objId.startsWith("dotnet:cfo_res:")){if(objId in this._call_function_res_cache)proxy=this._call_function_res_cache[objId];else throw new Error(`Unknown object id ${objId}`)}else{proxy=this._create_proxy_from_object_id(objId,details)}const fn_args=request.arguments!=undefined?request.arguments.map(a=>JSON.stringify(a.value)):[];const fn_eval_str=`var fn = ${request.functionDeclaration}; fn.call (proxy, ...[${fn_args}]);`;const fn_res=eval(fn_eval_str);if(fn_res===undefined)return{type:"undefined"};if(Object(fn_res)!==fn_res){if(typeof fn_res=="object"&&fn_res==null)return{type:typeof fn_res,subtype:`${fn_res}`,value:null};return{type:typeof fn_res,description:`${fn_res}`,value:`${fn_res}`}}if(request.returnByValue&&fn_res.subtype==undefined)return{type:"object",value:fn_res};if(Object.getPrototypeOf(fn_res)==Array.prototype){const fn_res_id=this._cache_call_function_res(fn_res);return{type:"object",subtype:"array",className:"Array",description:`Array(${fn_res.length})`,objectId:fn_res_id}}if(fn_res.value!==undefined||fn_res.subtype!==undefined){return fn_res}if(fn_res==proxy)return{type:"object",className:"Object",description:"Object",objectId:objId};const fn_res_id=this._cache_call_function_res(fn_res);return{type:"object",className:"Object",description:"Object",objectId:fn_res_id}},_clear_per_step_state:function(){this._next_id_var=0;this._id_table={}},mono_wasm_debugger_resume:function(){this._clear_per_step_state()},mono_wasm_detach_debugger:function(){if(!this.mono_wasm_set_is_debugger_attached)this.mono_wasm_set_is_debugger_attached=Module.cwrap("mono_wasm_set_is_debugger_attached","void",["bool"]);this.mono_wasm_set_is_debugger_attached(false)},_register_c_fn:function(name,...args){Object.defineProperty(this._c_fn_table,name+"_wrapper",{value:Module.cwrap(name,...args)})},_register_c_var_fn:function(name,ret_type,params){if(ret_type!=="bool")throw new Error(`Bug: Expected a C function signature that returns bool`);this._register_c_fn(name,ret_type,params);Object.defineProperty(this,name+"_info",{value:function(...args){MONO.var_info=[];const res_ok=MONO._c_fn_table[name+"_wrapper"](...args);let res=MONO.var_info;MONO.var_info=[];if(res_ok){res=this._fixup_name_value_objects(res);return{res_ok:res_ok,res:res}}return{res_ok:res_ok,res:undefined}}})},mono_wasm_runtime_ready:function(){MONO.commands_received=new Map;MONO.commands_received.remove=function(key){const value=this.get(key);this.delete(key);return value};this.mono_wasm_runtime_is_ready=true;this._clear_per_step_state();this._next_call_function_res_id=0;this._call_function_res_cache={};this._c_fn_table={};this._register_c_fn("mono_wasm_send_dbg_command","bool",["number","number","number","number","number"]);this._register_c_fn("mono_wasm_send_dbg_command_with_parms","bool",["number","number","number","number","number","number","string"]);this._debugger_buffer_len=-1;if(globalThis.dotnetDebugger)debugger;else console.debug("mono_wasm_runtime_ready","fe00e07a-5519-4dfe-b35a-f867dbaf2e28")},mono_wasm_setenv:function(name,value){if(!this.wasm_setenv)this.wasm_setenv=Module.cwrap("mono_wasm_setenv",null,["string","string"]);this.wasm_setenv(name,value)},mono_wasm_set_runtime_options:function(options){if(!this.wasm_parse_runtime_options)this.wasm_parse_runtime_options=Module.cwrap("mono_wasm_parse_runtime_options",null,["number","number"]);var argv=Module._malloc(options.length*4);var wasm_strdup=Module.cwrap("mono_wasm_strdup","number",["string"]);let aindex=0;for(var i=0;i0?virtualName.substr(0,lastSlash):null;var fileName=lastSlash>0?virtualName.substr(lastSlash+1):virtualName;if(fileName.startsWith("/"))fileName=fileName.substr(1);if(parentDirectory){if(ctx.tracing)console.log("MONO_WASM: Creating directory '"+parentDirectory+"'");var pathRet=ctx.createPath("/",parentDirectory,true,true)}else{parentDirectory="/"}if(ctx.tracing)console.log("MONO_WASM: Creating file '"+fileName+"' in directory '"+parentDirectory+"'");if(!this.mono_wasm_load_data_archive(bytes,parentDirectory)){var fileRet=ctx.createDataFile(parentDirectory,fileName,bytes,true,true,true)}break;default:throw new Error("Unrecognized asset behavior:",asset.behavior,"for asset",asset.name)}if(asset.behavior==="assembly"){var hasPpdb=ctx.mono_wasm_add_assembly(virtualName,offset,bytes.length);if(!hasPpdb){var index=ctx.loaded_files.findIndex(element=>element.file==virtualName);ctx.loaded_files.splice(index,1)}}else if(asset.behavior==="icu"){if(this.mono_wasm_load_icu_data(offset))ctx.num_icu_assets_loaded_successfully+=1;else console.error("Error loading ICU asset",asset.name)}else if(asset.behavior==="resource"){ctx.mono_wasm_add_satellite_assembly(virtualName,asset.culture,offset,bytes.length)}},mono_load_runtime_and_bcl:function(unused_vfs_prefix,deploy_prefix,debug_level,file_list,loaded_cb,fetch_file_cb){var args={fetch_file_cb:fetch_file_cb,loaded_cb:loaded_cb,debug_level:debug_level,assembly_root:deploy_prefix,assets:[]};for(var i=0;iloaded_files_with_debug_info.push(value.url));MONO.loaded_files=loaded_files_with_debug_info;if(ctx.tracing){console.log("MONO_WASM: loaded_assets: "+JSON.stringify(ctx.loaded_assets));console.log("MONO_WASM: loaded_files: "+JSON.stringify(ctx.loaded_files))}var load_runtime=Module.cwrap("mono_wasm_load_runtime",null,["string","number"]);console.debug("MONO_WASM: Initializing mono runtime");this.mono_wasm_globalization_init(args.globalization_mode);if(ENVIRONMENT_IS_SHELL||ENVIRONMENT_IS_NODE){try{load_runtime("unused",args.debug_level)}catch(ex){print("MONO_WASM: load_runtime () failed: "+ex);print("MONO_WASM: Stacktrace: \n");print(ex.stack);var wasm_exit=Module.cwrap("mono_wasm_exit",null,["number"]);wasm_exit(1)}}else{load_runtime("unused",args.debug_level)}let tz;try{tz=Intl.DateTimeFormat().resolvedOptions().timeZone}catch{}MONO.mono_wasm_setenv("TZ",tz||"UTC");MONO.mono_wasm_runtime_ready();args.loaded_cb()},_load_assets_and_runtime:function(args){if(args.enable_debugging)args.debug_level=args.enable_debugging;if(args.assembly_list)throw new Error("Invalid args (assembly_list was replaced by assets)");if(args.runtime_assets)throw new Error("Invalid args (runtime_assets was replaced by assets)");if(args.runtime_asset_sources)throw new Error("Invalid args (runtime_asset_sources was replaced by remote_sources)");if(!args.loaded_cb)throw new Error("loaded_cb not provided");var ctx={tracing:args.diagnostic_tracing||false,pending_count:args.assets.length,mono_wasm_add_assembly:Module.cwrap("mono_wasm_add_assembly","number",["string","number","number"]),mono_wasm_add_satellite_assembly:Module.cwrap("mono_wasm_add_satellite_assembly","void",["string","string","number","number"]),loaded_assets:Object.create(null),loaded_files:[],createPath:Module["FS_createPath"],createDataFile:Module["FS_createDataFile"]};if(ctx.tracing)console.log("mono_wasm_load_runtime_with_args",JSON.stringify(args));this._apply_configuration_from_args(args);var fetch_file_cb=this._get_fetch_file_cb_from_args(args);var onPendingRequestComplete=function(){--ctx.pending_count;if(ctx.pending_count===0){try{MONO._finalize_startup(args,ctx)}catch(exc){console.error("Unhandled exception in _finalize_startup",exc);throw exc}}};var processFetchResponseBuffer=function(asset,url,blob){try{MONO._handle_loaded_asset(ctx,asset,url,blob)}catch(exc){console.error("Unhandled exception in processFetchResponseBuffer",exc);throw exc}finally{onPendingRequestComplete()}};args.assets.forEach(function(asset){var attemptNextSource;var sourceIndex=0;var sourcesList=asset.load_remote?args.remote_sources:[""];var handleFetchResponse=function(response){if(!response.ok){try{attemptNextSource();return}catch(exc){console.error("MONO_WASM: Unhandled exception in handleFetchResponse attemptNextSource for asset",asset.name,exc);throw exc}}try{var bufferPromise=response["arrayBuffer"]();bufferPromise.then(processFetchResponseBuffer.bind(this,asset,response.url))}catch(exc){console.error("MONO_WASM: Unhandled exception in handleFetchResponse for asset",asset.name,exc);attemptNextSource()}};attemptNextSource=function(){if(sourceIndex>=sourcesList.length){var msg="MONO_WASM: Failed to load "+asset.name;try{var isOk=asset.is_optional||asset.name.match(/\.pdb$/)&&MONO.mono_wasm_ignore_pdb_load_errors;if(isOk)console.debug(msg);else{console.error(msg);throw new Error(msg)}}finally{onPendingRequestComplete()}}var sourcePrefix=sourcesList[sourceIndex];sourceIndex++;if(sourcePrefix==="./")sourcePrefix="";var attemptUrl;if(sourcePrefix.trim()===""){if(asset.behavior==="assembly")attemptUrl=locateFile(args.assembly_root+"/"+asset.name);else if(asset.behavior==="resource"){var path=asset.culture!==""?`${asset.culture}/${asset.name}`:asset.name;attemptUrl=locateFile(args.assembly_root+"/"+path)}else attemptUrl=asset.name}else{attemptUrl=sourcePrefix+asset.name}try{if(asset.name===attemptUrl){if(ctx.tracing)console.log("Attempting to fetch '%s'",attemptUrl)}else{if(ctx.tracing)console.log("Attempting to fetch '%s' for '%s'",attemptUrl,asset.name)}var fetch_promise=fetch_file_cb(attemptUrl);fetch_promise.then(handleFetchResponse)}catch(exc){console.error("MONO_WASM: Error fetching '%s'\n%s",attemptUrl,exc);attemptNextSource()}};attemptNextSource()})},mono_wasm_globalization_init:function(globalization_mode){var invariantMode=false;if(globalization_mode==="invariant")invariantMode=true;if(!invariantMode){if(this.num_icu_assets_loaded_successfully>0){console.debug("MONO_WASM: ICU data archive(s) loaded, disabling invariant mode")}else if(globalization_mode!=="icu"){console.debug("MONO_WASM: ICU data archive(s) not loaded, using invariant globalization mode");invariantMode=true}else{var msg="invariant globalization mode is inactive and no ICU data archives were loaded";console.error("MONO_WASM: ERROR: "+msg);throw new Error(msg)}}if(invariantMode)this.mono_wasm_setenv("DOTNET_SYSTEM_GLOBALIZATION_INVARIANT","1");this.mono_wasm_setenv("DOTNET_SYSTEM_GLOBALIZATION_PREDEFINED_CULTURES_ONLY","1")},mono_wasm_get_loaded_files:function(){if(!this.mono_wasm_set_is_debugger_attached)this.mono_wasm_set_is_debugger_attached=Module.cwrap("mono_wasm_set_is_debugger_attached","void",["bool"]);this.mono_wasm_set_is_debugger_attached(true);return MONO.loaded_files},mono_wasm_get_loaded_asset_table:function(){return MONO.loaded_assets},_base64_to_uint8:function(base64String){const byteCharacters=atob(base64String);const byteNumbers=new Array(byteCharacters.length);for(let i=0;i{var file=m[0];var last=file.lastIndexOf("/");var directory=file.slice(0,last+1);folders.add(directory)});folders.forEach(folder=>{Module["FS_createPath"](prefix,folder,true,true)});for(row of manifest){var name=row[0];var length=row[1];var bytes=data.slice(0,length);Module["FS_createDataFile"](prefix,name,bytes,true,true);data=data.slice(length)}return true},mono_wasm_raise_debug_event:function(event,args={}){if(typeof event!=="object")throw new Error(`event must be an object, but got ${JSON.stringify(event)}`);if(event.eventName===undefined)throw new Error(`event.eventName is a required parameter, in event: ${JSON.stringify(event)}`);if(typeof args!=="object")throw new Error(`args must be an object, but got ${JSON.stringify(args)}`);console.debug("mono_wasm_debug_event_raised:aef14bca-5519-4dfe-b35a-f867abc123ae",JSON.stringify(event),JSON.stringify(args))},mono_wasm_load_config:async function(configFilePath){Module.addRunDependency(configFilePath);try{let config=null;if(ENVIRONMENT_IS_WEB){const configRaw=await fetch(configFilePath);config=await configRaw.json()}else if(ENVIRONMENT_IS_NODE){config=require(configFilePath)}else{config=JSON.parse(read(configFilePath))}Module.config=config}catch(e){Module.config={message:"failed to load config file",error:e}}finally{Module.removeRunDependency(configFilePath)}},mono_wasm_set_timeout_exec:function(id){if(!this.mono_set_timeout_exec)this.mono_set_timeout_exec=Module.cwrap("mono_set_timeout_exec",null,["number"]);this.mono_set_timeout_exec(id)},prevent_timer_throttling:function(){let now=(new Date).valueOf();const desired_reach_time=now+1e3*60*6;const next_reach_time=Math.max(now+1e3,this.spread_timers_maximum);const light_throttling_frequency=1e3;for(var schedule=next_reach_time;schedule{this.mono_wasm_set_timeout_exec(0);MONO.pump_count++;MONO.pump_message()},delay)}this.spread_timers_maximum=desired_reach_time}};function _mono_set_timeout(timeout,id){if(typeof globalThis.setTimeout==="function"){if(MONO.lastScheduleTimeoutId){globalThis.clearTimeout(MONO.lastScheduleTimeoutId);MONO.lastScheduleTimeoutId=undefined}MONO.lastScheduleTimeoutId=globalThis.setTimeout(function mono_wasm_set_timeout_exec(){MONO.mono_wasm_set_timeout_exec(id)},timeout)}else{++MONO.pump_count;MONO.timeout_queue.push(function(){MONO.mono_wasm_set_timeout_exec(id)})}}var BINDING={BINDING_ASM:"[System.Private.Runtime.InteropServices.JavaScript]System.Runtime.InteropServices.JavaScript.Runtime",_cs_owned_objects_by_js_handle:[],_js_handle_free_list:[],_next_js_handle:1,mono_wasm_marshal_enum_as_int:true,mono_bindings_init:function(binding_asm){this.BINDING_ASM=binding_asm},export_functions:function(module){module["mono_bindings_init"]=BINDING.mono_bindings_init.bind(BINDING);module["mono_bind_method"]=BINDING.bind_method.bind(BINDING);module["mono_method_invoke"]=BINDING.call_method.bind(BINDING);module["mono_method_get_call_signature"]=BINDING.mono_method_get_call_signature.bind(BINDING);module["mono_method_resolve"]=BINDING.resolve_method_fqn.bind(BINDING);module["mono_bind_static_method"]=BINDING.bind_static_method.bind(BINDING);module["mono_call_static_method"]=BINDING.call_static_method.bind(BINDING);module["mono_bind_assembly_entry_point"]=BINDING.bind_assembly_entry_point.bind(BINDING);module["mono_call_assembly_entry_point"]=BINDING.call_assembly_entry_point.bind(BINDING);module["mono_intern_string"]=BINDING.mono_intern_string.bind(BINDING)},bindings_lazy_init:function(){if(this.init)return;this.init=true;this.wasm_type_symbol=Symbol.for("wasm type");this.js_owned_gc_handle_symbol=Symbol.for("wasm js_owned_gc_handle");this.cs_owned_js_handle_symbol=Symbol.for("wasm cs_owned_js_handle");this.delegate_invoke_symbol=Symbol.for("wasm delegate_invoke");this.delegate_invoke_signature_symbol=Symbol.for("wasm delegate_invoke_signature");this.listener_registration_count_symbol=Symbol.for("wasm listener_registration_count");Object.prototype[this.wasm_type_symbol]=0;Array.prototype[this.wasm_type_symbol]=1;ArrayBuffer.prototype[this.wasm_type_symbol]=2;DataView.prototype[this.wasm_type_symbol]=3;Function.prototype[this.wasm_type_symbol]=4;Map.prototype[this.wasm_type_symbol]=5;if(typeof SharedArrayBuffer!=="undefined")SharedArrayBuffer.prototype[this.wasm_type_symbol]=6;Int8Array.prototype[this.wasm_type_symbol]=10;Uint8Array.prototype[this.wasm_type_symbol]=11;Uint8ClampedArray.prototype[this.wasm_type_symbol]=12;Int16Array.prototype[this.wasm_type_symbol]=13;Uint16Array.prototype[this.wasm_type_symbol]=14;Int32Array.prototype[this.wasm_type_symbol]=15;Uint32Array.prototype[this.wasm_type_symbol]=16;Float32Array.prototype[this.wasm_type_symbol]=17;Float64Array.prototype[this.wasm_type_symbol]=18;this.assembly_load=Module.cwrap("mono_wasm_assembly_load","number",["string"]);this.find_corlib_class=Module.cwrap("mono_wasm_find_corlib_class","number",["string","string"]);this.find_class=Module.cwrap("mono_wasm_assembly_find_class","number",["number","string","string"]);this._find_method=Module.cwrap("mono_wasm_assembly_find_method","number",["number","string","number"]);this.invoke_method=Module.cwrap("mono_wasm_invoke_method","number",["number","number","number","number"]);this.mono_string_get_utf8=Module.cwrap("mono_wasm_string_get_utf8","number",["number"]);this.mono_wasm_string_from_utf16=Module.cwrap("mono_wasm_string_from_utf16","number",["number","number"]);this.mono_get_obj_type=Module.cwrap("mono_wasm_get_obj_type","number",["number"]);this.mono_array_length=Module.cwrap("mono_wasm_array_length","number",["number"]);this.mono_array_get=Module.cwrap("mono_wasm_array_get","number",["number","number"]);this.mono_obj_array_new=Module.cwrap("mono_wasm_obj_array_new","number",["number"]);this.mono_obj_array_set=Module.cwrap("mono_wasm_obj_array_set","void",["number","number","number"]);this.mono_wasm_register_bundled_satellite_assemblies=Module.cwrap("mono_wasm_register_bundled_satellite_assemblies","void",[]);this.mono_wasm_try_unbox_primitive_and_get_type=Module.cwrap("mono_wasm_try_unbox_primitive_and_get_type","number",["number","number"]);this.mono_wasm_box_primitive=Module.cwrap("mono_wasm_box_primitive","number",["number","number","number"]);this.mono_wasm_intern_string=Module.cwrap("mono_wasm_intern_string","number",["number"]);this.assembly_get_entry_point=Module.cwrap("mono_wasm_assembly_get_entry_point","number",["number"]);this.mono_wasm_get_delegate_invoke=Module.cwrap("mono_wasm_get_delegate_invoke","number",["number"]);this.mono_wasm_string_array_new=Module.cwrap("mono_wasm_string_array_new","number",["number"]);this._box_buffer=Module._malloc(16);this._unbox_buffer=Module._malloc(16);this._class_int32=this.find_corlib_class("System","Int32");this._class_uint32=this.find_corlib_class("System","UInt32");this._class_double=this.find_corlib_class("System","Double");this._class_boolean=this.find_corlib_class("System","Boolean");this.mono_typed_array_new=Module.cwrap("mono_wasm_typed_array_new","number",["number","number","number","number"]);var binding_fqn_asm=this.BINDING_ASM.substring(this.BINDING_ASM.indexOf("[")+1,this.BINDING_ASM.indexOf("]")).trim();var binding_fqn_class=this.BINDING_ASM.substring(this.BINDING_ASM.indexOf("]")+1).trim();this.binding_module=this.assembly_load(binding_fqn_asm);if(!this.binding_module)throw"Can't find bindings module assembly: "+binding_fqn_asm;var namespace=null,classname=null;if(binding_fqn_class!==null&&typeof binding_fqn_class!=="undefined"){namespace="System.Runtime.InteropServices.JavaScript";classname=binding_fqn_class.length>0?binding_fqn_class:"Runtime";if(binding_fqn_class.indexOf(".")!=-1){var idx=binding_fqn_class.lastIndexOf(".");namespace=binding_fqn_class.substring(0,idx);classname=binding_fqn_class.substring(idx+1)}}var wasm_runtime_class=this.find_class(this.binding_module,namespace,classname);if(!wasm_runtime_class)throw"Can't find "+binding_fqn_class+" class";var get_method=function(method_name){var res=BINDING.find_method(wasm_runtime_class,method_name,-1);if(!res)throw"Can't find method "+namespace+"."+classname+":"+method_name;return res};var bind_runtime_method=function(method_name,signature){var method=get_method(method_name);return BINDING.bind_method(method,0,signature,"BINDINGS_"+method_name)};this.get_call_sig=get_method("GetCallSignature");this._get_cs_owned_object_by_js_handle=bind_runtime_method("GetCSOwnedObjectByJSHandle","ii!");this._get_cs_owned_object_js_handle=bind_runtime_method("GetCSOwnedObjectJSHandle","mi");this._try_get_cs_owned_object_js_handle=bind_runtime_method("TryGetCSOwnedObjectJSHandle","mi");this._create_cs_owned_proxy=bind_runtime_method("CreateCSOwnedProxy","iii!");this._get_js_owned_object_by_gc_handle=bind_runtime_method("GetJSOwnedObjectByGCHandle","i!");this._get_js_owned_object_gc_handle=bind_runtime_method("GetJSOwnedObjectGCHandle","m");this._release_js_owned_object_by_gc_handle=bind_runtime_method("ReleaseJSOwnedObjectByGCHandle","i");this._create_tcs=bind_runtime_method("CreateTaskSource","");this._set_tcs_result=bind_runtime_method("SetTaskSourceResult","io");this._set_tcs_failure=bind_runtime_method("SetTaskSourceFailure","is");this._get_tcs_task=bind_runtime_method("GetTaskSourceTask","i!");this._setup_js_cont=bind_runtime_method("SetupJSContinuation","mo");this._object_to_string=bind_runtime_method("ObjectToString","m");this._get_date_value=bind_runtime_method("GetDateValue","m");this._create_date_time=bind_runtime_method("CreateDateTime","d!");this._create_uri=bind_runtime_method("CreateUri","s!");this._is_simple_array=bind_runtime_method("IsSimpleArray","m");this._are_promises_supported=(typeof Promise==="object"||typeof Promise==="function")&&typeof Promise.resolve==="function";this.isThenable=(js_obj=>{return Promise.resolve(js_obj)===js_obj||(typeof js_obj==="object"||typeof js_obj==="function")&&typeof js_obj.then==="function"});this.isChromium=false;if(globalThis.navigator){var nav=globalThis.navigator;if(nav.userAgentData&&nav.userAgentData.brands){this.isChromium=nav.userAgentData.brands.some(i=>i.brand=="Chromium")}else if(globalThis.navigator.userAgent){this.isChromium=nav.userAgent.includes("Chrome")}}this._empty_string="";this._empty_string_ptr=0;this._interned_string_full_root_buffers=[];this._interned_string_current_root_buffer=null;this._interned_string_current_root_buffer_count=0;this._interned_js_string_table=new Map;this._js_owned_object_table=new Map;this._use_finalization_registry=typeof globalThis.FinalizationRegistry==="function";this._use_weak_ref=typeof globalThis.WeakRef==="function";if(this._use_finalization_registry){this._js_owned_object_registry=new globalThis.FinalizationRegistry(this._js_owned_object_finalized.bind(this))}},_js_owned_object_finalized:function(gc_handle){this._js_owned_object_table.delete(gc_handle);this._release_js_owned_object_by_gc_handle(gc_handle)},_lookup_js_owned_object:function(gc_handle){if(!gc_handle)return null;var wr=this._js_owned_object_table.get(gc_handle);if(wr){return wr.deref()}return null},_register_js_owned_object:function(gc_handle,js_obj){var wr;if(this._use_weak_ref){wr=new WeakRef(js_obj)}else{wr={deref:()=>{return js_obj}}}this._js_owned_object_table.set(gc_handle,wr)},_wrap_js_thenable_as_task:function(thenable){this.bindings_lazy_init();if(!thenable)return null;var thenable_js_handle=BINDING.mono_wasm_get_js_handle(thenable);const tcs_gc_handle=this._create_tcs();thenable.then(result=>{this._set_tcs_result(tcs_gc_handle,result);this._mono_wasm_release_js_handle(thenable_js_handle);if(!this._use_finalization_registry){this._release_js_owned_object_by_gc_handle(tcs_gc_handle)}},reason=>{this._set_tcs_failure(tcs_gc_handle,reason?reason.toString():"");this._mono_wasm_release_js_handle(thenable_js_handle);if(!this._use_finalization_registry){this._release_js_owned_object_by_gc_handle(tcs_gc_handle)}});if(this._use_finalization_registry){this._js_owned_object_registry.register(thenable,tcs_gc_handle)}return this._get_tcs_task(tcs_gc_handle)},_unbox_task_root_as_promise:function(root){this.bindings_lazy_init();const self=this;if(root.value===0)return null;if(!this._are_promises_supported)throw new Error("Promises are not supported thus 'System.Threading.Tasks.Task' can not work in this context.");const gc_handle=this._get_js_owned_object_gc_handle(root.value);var result=this._lookup_js_owned_object(gc_handle);if(!result){var cont_obj=null;var result=new Promise(function(resolve,reject){if(self._use_finalization_registry){cont_obj={resolve:resolve,reject:reject}}else{cont_obj={resolve:function(){const res=resolve.apply(null,arguments);self._js_owned_object_table.delete(gc_handle);self._release_js_owned_object_by_gc_handle(gc_handle);return res},reject:function(){const res=reject.apply(null,arguments);self._js_owned_object_table.delete(gc_handle);self._release_js_owned_object_by_gc_handle(gc_handle);return res}}}});this._setup_js_cont(root.value,cont_obj);if(this._use_finalization_registry){this._js_owned_object_registry.register(result,gc_handle)}this._register_js_owned_object(gc_handle,result)}return result},_unbox_ref_type_root_as_js_object:function(root){this.bindings_lazy_init();if(root.value===0)return null;var js_handle=this._try_get_cs_owned_object_js_handle(root.value,false);if(js_handle){if(js_handle===-1){throw new Error("Cannot access a disposed JSObject at "+root.value)}return this.mono_wasm_get_jsobj_from_js_handle(js_handle)}const gc_handle=this._get_js_owned_object_gc_handle(root.value);var result=this._lookup_js_owned_object(gc_handle);if(!result){result={};result[BINDING.js_owned_gc_handle_symbol]=gc_handle;if(this._use_finalization_registry){this._js_owned_object_registry.register(result,gc_handle)}this._register_js_owned_object(gc_handle,result)}return result},_wrap_delegate_root_as_function:function(root){this.bindings_lazy_init();if(root.value===0)return null;const gc_handle=this._get_js_owned_object_gc_handle(root.value);return this._wrap_delegate_gc_handle_as_function(gc_handle)},_wrap_delegate_gc_handle_as_function:function(gc_handle,after_listener_callback){this.bindings_lazy_init();var result=this._lookup_js_owned_object(gc_handle);if(!result){result=function(){const delegateRoot=MONO.mono_wasm_new_root(BINDING.get_js_owned_object_by_gc_handle(gc_handle));try{const res=BINDING.call_method(result[BINDING.delegate_invoke_symbol],delegateRoot.value,result[BINDING.delegate_invoke_signature_symbol],arguments);if(after_listener_callback){after_listener_callback()}return res}finally{delegateRoot.release()}};const delegateRoot=MONO.mono_wasm_new_root(BINDING.get_js_owned_object_by_gc_handle(gc_handle));try{if(typeof result[BINDING.delegate_invoke_symbol]==="undefined"){result[BINDING.delegate_invoke_symbol]=BINDING.mono_wasm_get_delegate_invoke(delegateRoot.value);if(!result[BINDING.delegate_invoke_symbol]){throw new Error("System.Delegate Invoke method can not be resolved.")}}if(typeof result[BINDING.delegate_invoke_signature_symbol]==="undefined"){result[BINDING.delegate_invoke_signature_symbol]=Module.mono_method_get_call_signature(result[BINDING.delegate_invoke_symbol],delegateRoot.value)}}finally{delegateRoot.release()}if(this._use_finalization_registry){this._js_owned_object_registry.register(result,gc_handle)}this._register_js_owned_object(gc_handle,result)}return result},mono_intern_string:function(string){if(string.length===0)return this._empty_string;var ptr=this.js_string_to_mono_string_interned(string);var result=MONO.interned_string_table.get(ptr);return result},_store_string_in_intern_table:function(string,ptr,internIt){if(!ptr)throw new Error("null pointer passed to _store_string_in_intern_table");else if(typeof ptr!=="number")throw new Error(`non-pointer passed to _store_string_in_intern_table: ${typeof ptr}`);const internBufferSize=8192;if(this._interned_string_current_root_buffer_count>=internBufferSize){this._interned_string_full_root_buffers.push(this._interned_string_current_root_buffer);this._interned_string_current_root_buffer=null}if(!this._interned_string_current_root_buffer){this._interned_string_current_root_buffer=MONO.mono_wasm_new_root_buffer(internBufferSize,"interned strings");this._interned_string_current_root_buffer_count=0}var rootBuffer=this._interned_string_current_root_buffer;var index=this._interned_string_current_root_buffer_count++;rootBuffer.set(index,ptr);if(internIt)rootBuffer.set(index,ptr=this.mono_wasm_intern_string(ptr));if(!ptr)throw new Error("mono_wasm_intern_string produced a null pointer");this._interned_js_string_table.set(string,ptr);if(!MONO.interned_string_table)MONO.interned_string_table=new Map;MONO.interned_string_table.set(ptr,string);if(string.length===0&&!this._empty_string_ptr)this._empty_string_ptr=ptr;return ptr},js_string_to_mono_string_interned:function(string){var text=typeof string==="symbol"?string.description||Symbol.keyFor(string)||"":string;if(text.length===0&&this._empty_string_ptr)return this._empty_string_ptr;var ptr=this._interned_js_string_table.get(string);if(ptr)return ptr;ptr=this.js_string_to_mono_string_new(text);ptr=this._store_string_in_intern_table(string,ptr,true);return ptr},js_string_to_mono_string:function(string){if(string===null)return null;else if(typeof string==="symbol")return this.js_string_to_mono_string_interned(string);else if(typeof string!=="string")throw new Error("Expected string argument, got "+typeof string);if(string.length===0)return this.js_string_to_mono_string_interned(string);if(string.length<=256){var interned=this._interned_js_string_table.get(string);if(interned)return interned}return this.js_string_to_mono_string_new(string)},js_string_to_mono_string_new:function(string){var buffer=Module._malloc((string.length+1)*2);var buffer16=buffer/2|0;for(var i=0;i0)return this.mono_wasm_get_jsobj_from_js_handle(js_handle);return null},_get_string_from_intern_table:function(mono_obj){if(!MONO.interned_string_table)return undefined;return MONO.interned_string_table.get(mono_obj)},conv_string:function(mono_obj){return MONO.string_decoder.copy(mono_obj)},is_nested_array:function(ele){return this._is_simple_array(ele)},mono_array_to_js_array:function(mono_array){if(mono_array===0)return null;var arrayRoot=MONO.mono_wasm_new_root(mono_array);try{return this._mono_array_root_to_js_array(arrayRoot)}finally{arrayRoot.release()}},_mono_array_root_to_js_array:function(arrayRoot){if(arrayRoot.value===0)return null;let elemRoot=MONO.mono_wasm_new_root();try{var len=this.mono_array_length(arrayRoot.value);var res=new Array(len);for(var i=0;i>>0===js_obj)result=this._box_js_uint(js_obj);else result=this._box_js_double(js_obj);if(!result)throw new Error(`Boxing failed for ${js_obj}`);return result}case typeof js_obj==="string":return this.js_string_to_mono_string(js_obj);case typeof js_obj==="symbol":return this.js_string_to_mono_string_interned(js_obj);case typeof js_obj==="boolean":return this._box_js_bool(js_obj);case this.isThenable(js_obj)===true:return this._wrap_js_thenable_as_task(js_obj);case js_obj.constructor.name==="Date":return this._create_date_time(js_obj.getTime());default:return this._extract_mono_obj(should_add_in_flight,js_obj)}},_extract_mono_obj:function(should_add_in_flight,js_obj){if(js_obj===null||typeof js_obj==="undefined")return 0;var result=null;if(js_obj[BINDING.js_owned_gc_handle_symbol]){result=this.get_js_owned_object_by_gc_handle(js_obj[BINDING.js_owned_gc_handle_symbol]);return result}if(js_obj[BINDING.cs_owned_js_handle_symbol]){result=this.get_cs_owned_object_by_js_handle(js_obj[BINDING.cs_owned_js_handle_symbol],should_add_in_flight);if(!result){delete js_obj[BINDING.cs_owned_js_handle_symbol]}}if(!result){const wasm_type=js_obj[this.wasm_type_symbol];const wasm_type_id=typeof wasm_type==="undefined"?0:wasm_type;var js_handle=BINDING.mono_wasm_get_js_handle(js_obj);result=this._create_cs_owned_proxy(js_handle,wasm_type_id,should_add_in_flight)}return result},has_backing_array_buffer:function(js_obj){return typeof SharedArrayBuffer!=="undefined"?js_obj.buffer instanceof ArrayBuffer||js_obj.buffer instanceof SharedArrayBuffer:js_obj.buffer instanceof ArrayBuffer},js_typed_array_to_array:function(js_obj){if(!!(this.has_backing_array_buffer(js_obj)&&js_obj.BYTES_PER_ELEMENT)){var arrayType=js_obj[this.wasm_type_symbol];var heapBytes=this.js_typedarray_to_heap(js_obj);var bufferArray=this.mono_typed_array_new(heapBytes.byteOffset,js_obj.length,js_obj.BYTES_PER_ELEMENT,arrayType);Module._free(heapBytes.byteOffset);return bufferArray}else{throw new Error("Object '"+js_obj+"' is not a typed array")}},typedarray_copy_to:function(typed_array,pinned_array,begin,end,bytes_per_element){if(!!(this.has_backing_array_buffer(typed_array)&&typed_array.BYTES_PER_ELEMENT)){if(bytes_per_element!==typed_array.BYTES_PER_ELEMENT)throw new Error("Inconsistent element sizes: TypedArray.BYTES_PER_ELEMENT '"+typed_array.BYTES_PER_ELEMENT+"' sizeof managed element: '"+bytes_per_element+"'");var num_of_bytes=(end-begin)*bytes_per_element;var view_bytes=typed_array.length*typed_array.BYTES_PER_ELEMENT;if(num_of_bytes>view_bytes)num_of_bytes=view_bytes;var offset=begin*bytes_per_element;var heapBytes=new Uint8Array(Module.HEAPU8.buffer,pinned_array+offset,num_of_bytes);heapBytes.set(new Uint8Array(typed_array.buffer,typed_array.byteOffset,num_of_bytes));return num_of_bytes}else{throw new Error("Object '"+typed_array+"' is not a typed array")}},typedarray_copy_from:function(typed_array,pinned_array,begin,end,bytes_per_element){if(!!(this.has_backing_array_buffer(typed_array)&&typed_array.BYTES_PER_ELEMENT)){if(bytes_per_element!==typed_array.BYTES_PER_ELEMENT)throw new Error("Inconsistent element sizes: TypedArray.BYTES_PER_ELEMENT '"+typed_array.BYTES_PER_ELEMENT+"' sizeof managed element: '"+bytes_per_element+"'");var num_of_bytes=(end-begin)*bytes_per_element;var view_bytes=typed_array.length*typed_array.BYTES_PER_ELEMENT;if(num_of_bytes>view_bytes)num_of_bytes=view_bytes;var typedarrayBytes=new Uint8Array(typed_array.buffer,0,num_of_bytes);var offset=begin*bytes_per_element;typedarrayBytes.set(Module.HEAPU8.subarray(pinned_array+offset,pinned_array+offset+num_of_bytes));return num_of_bytes}else{throw new Error("Object '"+typed_array+"' is not a typed array")}},typed_array_from:function(pinned_array,begin,end,bytes_per_element,type){var newTypedArray=0;switch(type){case 5:newTypedArray=new Int8Array(end-begin);break;case 6:newTypedArray=new Uint8Array(end-begin);break;case 7:newTypedArray=new Int16Array(end-begin);break;case 8:newTypedArray=new Uint16Array(end-begin);break;case 9:newTypedArray=new Int32Array(end-begin);break;case 10:newTypedArray=new Uint32Array(end-begin);break;case 13:newTypedArray=new Float32Array(end-begin);break;case 14:newTypedArray=new Float64Array(end-begin);break;case 15:newTypedArray=new Uint8ClampedArray(end-begin);break}this.typedarray_copy_from(newTypedArray,pinned_array,begin,end,bytes_per_element);return newTypedArray},js_to_mono_enum:function(js_obj,method,parmIdx){this.bindings_lazy_init();if(typeof js_obj!=="number")throw new Error(`Expected numeric value for enum argument, got '${js_obj}'`);return js_obj|0},get_js_owned_object_by_gc_handle:function(gc_handle){if(!gc_handle){return 0}return this._get_js_owned_object_by_gc_handle(gc_handle)},get_cs_owned_object_by_js_handle:function(js_handle,should_add_in_flight){if(!js_handle){return 0}return this._get_cs_owned_object_by_js_handle(js_handle,should_add_in_flight)},mono_method_get_call_signature:function(method,mono_obj){let instanceRoot=MONO.mono_wasm_new_root(mono_obj);try{this.bindings_lazy_init();return this.call_method(this.get_call_sig,null,"im",[method,instanceRoot.value])}finally{instanceRoot.release()}},_create_named_function:function(name,argumentNames,body,closure){var result=null,closureArgumentList=null,closureArgumentNames=null;if(closure){closureArgumentNames=Object.keys(closure);closureArgumentList=new Array(closureArgumentNames.length);for(var i=0,l=closureArgumentNames.length;i0;var has_args_marshal=typeof args_marshal==="string";if(has_args){if(!has_args_marshal)throw new Error("No signature provided for method call.");else if(args.length>args_marshal.length)throw new Error("Too many parameter values. Expected at most "+args_marshal.length+" value(s) for signature "+args_marshal)}return has_args_marshal&&has_args},_get_buffer_for_method_call:function(converter){if(!converter)return 0;var result=converter.scratchBuffer;converter.scratchBuffer=0;return result},_get_args_root_buffer_for_method_call:function(converter){if(!converter)return null;if(!converter.needs_root_buffer)return null;var result;if(converter.scratchRootBuffer){result=converter.scratchRootBuffer;converter.scratchRootBuffer=null}else{result=MONO.mono_wasm_new_root_buffer(converter.steps.length);result.converter=converter}return result},_release_args_root_buffer_from_method_call:function(converter,argsRootBuffer){if(!argsRootBuffer||!converter)return;if(!converter.scratchRootBuffer){argsRootBuffer.clear();converter.scratchRootBuffer=argsRootBuffer}else{argsRootBuffer.release()}},_release_buffer_from_method_call:function(converter,buffer){if(!converter||!buffer)return;if(!converter.scratchBuffer)converter.scratchBuffer=buffer|0;else Module._free(buffer|0)},_convert_exception_for_method_call:function(result,exception){if(exception===0)return null;var msg=this.conv_string(result);var err=new Error(msg);return err},_maybe_produce_signature_warning:function(converter){if(converter.has_warned_about_signature)return;console.warn("MONO_WASM: Deprecated raw return value signature: '"+converter.args_marshal+"'. End the signature with '!' instead of 'm'.");converter.has_warned_about_signature=true},_decide_if_result_is_marshaled:function(converter,argc){if(!converter)return true;if(converter.is_result_possibly_unmarshaled&&argc===converter.result_unmarshaled_if_argc){if(argc= ",converter.result_unmarshaled_if_argc,"argument(s) but got",argc,"for signature "+converter.args_marshal].join(" "));this._maybe_produce_signature_warning(converter);return false}else{if(argc0&&Array.isArray(args[0]))args[0]=BINDING.js_array_to_mono_array(args[0],true,false);let result=BINDING.call_method(method,null,signature,args);return Promise.resolve(result)}catch(error){return Promise.reject(error)}}},call_assembly_entry_point:function(assembly,args,signature){return this.bind_assembly_entry_point(assembly,signature)(...args)},mono_wasm_get_jsobj_from_js_handle:function(js_handle){if(js_handle>0)return this._cs_owned_objects_by_js_handle[js_handle];return null},mono_wasm_get_js_handle:function(js_obj){if(js_obj[BINDING.cs_owned_js_handle_symbol]){return js_obj[BINDING.cs_owned_js_handle_symbol]}var js_handle=this._js_handle_free_list.length?this._js_handle_free_list.pop():this._next_js_handle++;this._cs_owned_objects_by_js_handle[js_handle]=js_obj;js_obj[BINDING.cs_owned_js_handle_symbol]=js_handle;return js_handle},_mono_wasm_release_js_handle:function(js_handle){var obj=BINDING._cs_owned_objects_by_js_handle[js_handle];if(typeof obj!=="undefined"&&obj!==null){if(globalThis===obj)return obj;if(typeof obj[BINDING.cs_owned_js_handle_symbol]!=="undefined"){obj[BINDING.cs_owned_js_handle_symbol]=undefined}BINDING._cs_owned_objects_by_js_handle[js_handle]=undefined;BINDING._js_handle_free_list.push(js_handle)}return obj}};function _mono_wasm_add_event_listener(objHandle,name,listener_gc_handle,optionsHandle){var nameRoot=MONO.mono_wasm_new_root(name);try{BINDING.bindings_lazy_init();var sName=BINDING.conv_string(nameRoot.value);var obj=BINDING.mono_wasm_get_jsobj_from_js_handle(objHandle);if(!obj)throw new Error("ERR09: Invalid JS object handle for '"+sName+"'");const prevent_timer_throttling=!BINDING.isChromium||obj.constructor.name!=="WebSocket"?null:()=>MONO.prevent_timer_throttling(0);var listener=BINDING._wrap_delegate_gc_handle_as_function(listener_gc_handle,prevent_timer_throttling);if(!listener)throw new Error("ERR10: Invalid listener gc_handle");var options=optionsHandle?BINDING.mono_wasm_get_jsobj_from_js_handle(optionsHandle):null;if(!BINDING._use_finalization_registry){listener[BINDING.listener_registration_count_symbol]=listener[BINDING.listener_registration_count_symbol]?listener[BINDING.listener_registration_count_symbol]+1:1}if(options)obj.addEventListener(sName,listener,options);else obj.addEventListener(sName,listener);return 0}catch(exc){return BINDING.js_string_to_mono_string(exc.message)}finally{nameRoot.release()}}function _mono_wasm_asm_loaded(assembly_name,assembly_ptr,assembly_len,pdb_ptr,pdb_len){if(MONO.mono_wasm_runtime_is_ready!==true)return;const assembly_name_str=assembly_name!==0?Module.UTF8ToString(assembly_name).concat(".dll"):"";const assembly_data=new Uint8Array(Module.HEAPU8.buffer,assembly_ptr,assembly_len);const assembly_b64=MONO._base64Converter.toBase64StringImpl(assembly_data);let pdb_b64;if(pdb_ptr){const pdb_data=new Uint8Array(Module.HEAPU8.buffer,pdb_ptr,pdb_len);pdb_b64=MONO._base64Converter.toBase64StringImpl(pdb_data)}MONO.mono_wasm_raise_debug_event({eventName:"AssemblyLoaded",assembly_name:assembly_name_str,assembly_b64:assembly_b64,pdb_b64:pdb_b64})}function _mono_wasm_create_cs_owned_object(core_name,args,is_exception){var argsRoot=MONO.mono_wasm_new_root(args),nameRoot=MONO.mono_wasm_new_root(core_name);try{BINDING.bindings_lazy_init();var js_name=BINDING.conv_string(nameRoot.value);if(!js_name){setValue(is_exception,1,"i32");return BINDING.js_string_to_mono_string("Invalid name @"+nameRoot.value)}var coreObj=globalThis[js_name];if(coreObj===null||typeof coreObj==="undefined"){setValue(is_exception,1,"i32");return BINDING.js_string_to_mono_string("JavaScript host object '"+js_name+"' not found.")}var js_args=BINDING._mono_array_root_to_js_array(argsRoot);try{var allocator=function(constructor,js_args){var argsList=new Array;argsList[0]=constructor;if(js_args)argsList=argsList.concat(js_args);var tempCtor=constructor.bind.apply(constructor,argsList);var js_obj=new tempCtor;return js_obj};var js_obj=allocator(coreObj,js_args);var js_handle=BINDING.mono_wasm_get_js_handle(js_obj);return BINDING._js_to_mono_obj(false,js_handle)}catch(e){var res=e.toString();setValue(is_exception,1,"i32");if(res===null||res===undefined)res="Error allocating object.";return BINDING.js_string_to_mono_string(res)}}finally{argsRoot.release();nameRoot.release()}}function _mono_wasm_fire_debugger_agent_message(){debugger}function _mono_wasm_get_by_index(js_handle,property_index,is_exception){BINDING.bindings_lazy_init();var obj=BINDING.mono_wasm_get_jsobj_from_js_handle(js_handle);if(!obj){setValue(is_exception,1,"i32");return BINDING.js_string_to_mono_string("ERR03: Invalid JS object handle '"+js_handle+"' while getting ["+property_index+"]")}try{var m=obj[property_index];return BINDING._js_to_mono_obj(true,m)}catch(e){var res=e.toString();setValue(is_exception,1,"i32");if(res===null||typeof res==="undefined")res="unknown exception";return BINDING.js_string_to_mono_string(res)}}function _mono_wasm_get_global_object(global_name,is_exception){var nameRoot=MONO.mono_wasm_new_root(global_name);try{BINDING.bindings_lazy_init();var js_name=BINDING.conv_string(nameRoot.value);var globalObj;if(!js_name){globalObj=globalThis}else{globalObj=globalThis[js_name]}if(globalObj===null||typeof globalObj===undefined){setValue(is_exception,1,"i32");return BINDING.js_string_to_mono_string("Global object '"+js_name+"' not found.")}return BINDING._js_to_mono_obj(true,globalObj)}finally{nameRoot.release()}}function _mono_wasm_get_object_property(js_handle,property_name,is_exception){BINDING.bindings_lazy_init();var nameRoot=MONO.mono_wasm_new_root(property_name);try{var js_name=BINDING.conv_string(nameRoot.value);if(!js_name){setValue(is_exception,1,"i32");return BINDING.js_string_to_mono_string("Invalid property name object '"+nameRoot.value+"'")}var obj=BINDING.mono_wasm_get_jsobj_from_js_handle(js_handle);if(!obj){setValue(is_exception,1,"i32");return BINDING.js_string_to_mono_string("ERR01: Invalid JS object handle '"+js_handle+"' while geting '"+js_name+"'")}var res;try{var m=obj[js_name];return BINDING._js_to_mono_obj(true,m)}catch(e){var res=e.toString();setValue(is_exception,1,"i32");if(res===null||typeof res==="undefined")res="unknown exception";return BINDING.js_string_to_mono_string(res)}}finally{nameRoot.release()}}var DOTNET={conv_string:function(mono_obj){return MONO.string_decoder.copy(mono_obj)}};function _mono_wasm_invoke_js_blazor(exceptionMessage,callInfo,arg0,arg1,arg2){var mono_string=globalThis._mono_string_cached||(globalThis._mono_string_cached=Module.cwrap("mono_wasm_string_from_js","number",["string"]));try{var blazorExports=globalThis.Blazor;if(!blazorExports){throw new Error("The blazor.webassembly.js library is not loaded.")}return blazorExports._internal.invokeJSFromDotNet(callInfo,arg0,arg1,arg2)}catch(ex){var exceptionJsString=ex.message+"\n"+ex.stack;var exceptionSystemString=mono_string(exceptionJsString);setValue(exceptionMessage,exceptionSystemString,"i32");return 0}}function _mono_wasm_invoke_js_marshalled(exceptionMessage,asyncHandleLongPtr,functionName,argsJson,treatResultAsVoid){var mono_string=globalThis._mono_string_cached||(globalThis._mono_string_cached=Module.cwrap("mono_wasm_string_from_js","number",["string"]));try{var u32Index=asyncHandleLongPtr>>2;var asyncHandleJsNumber=Module.HEAPU32[u32Index+1]*4294967296+Module.HEAPU32[u32Index];var funcNameJsString=DOTNET.conv_string(functionName);var argsJsonJsString=argsJson&&DOTNET.conv_string(argsJson);var dotNetExports=globaThis.DotNet;if(!dotNetExports){throw new Error("The Microsoft.JSInterop.js library is not loaded.")}if(asyncHandleJsNumber){dotNetExports.jsCallDispatcher.beginInvokeJSFromDotNet(asyncHandleJsNumber,funcNameJsString,argsJsonJsString,treatResultAsVoid);return 0}else{var resultJson=dotNetExports.jsCallDispatcher.invokeJSFromDotNet(funcNameJsString,argsJsonJsString,treatResultAsVoid);return resultJson===null?0:mono_string(resultJson)}}catch(ex){var exceptionJsString=ex.message+"\n"+ex.stack;var exceptionSystemString=mono_string(exceptionJsString);setValue(exceptionMessage,exceptionSystemString,"i32");return 0}}function _mono_wasm_invoke_js_unmarshalled(exceptionMessage,funcName,arg0,arg1,arg2){try{var funcNameJsString=DOTNET.conv_string(funcName);var dotNetExports=globalThis.DotNet;if(!dotNetExports){throw new Error("The Microsoft.JSInterop.js library is not loaded.")}var funcInstance=dotNetExports.jsCallDispatcher.findJSFunction(funcNameJsString);return funcInstance.call(null,arg0,arg1,arg2)}catch(ex){var exceptionJsString=ex.message+"\n"+ex.stack;var mono_string=Module.cwrap("mono_wasm_string_from_js","number",["string"]);var exceptionSystemString=mono_string(exceptionJsString);setValue(exceptionMessage,exceptionSystemString,"i32");return 0}}function _mono_wasm_invoke_js_with_args(js_handle,method_name,args,is_exception){let argsRoot=MONO.mono_wasm_new_root(args),nameRoot=MONO.mono_wasm_new_root(method_name);try{BINDING.bindings_lazy_init();var js_name=BINDING.conv_string(nameRoot.value);if(!js_name||typeof js_name!=="string"){setValue(is_exception,1,"i32");return BINDING.js_string_to_mono_string("ERR12: Invalid method name object '"+nameRoot.value+"'")}var obj=BINDING.get_js_obj(js_handle);if(!obj){setValue(is_exception,1,"i32");return BINDING.js_string_to_mono_string("ERR13: Invalid JS object handle '"+js_handle+"' while invoking '"+js_name+"'")}var js_args=BINDING._mono_array_root_to_js_array(argsRoot);var res;try{var m=obj[js_name];if(typeof m==="undefined")throw new Error("Method: '"+js_name+"' not found for: '"+Object.prototype.toString.call(obj)+"'");var res=m.apply(obj,js_args);return BINDING._js_to_mono_obj(true,res)}catch(e){var res=e.toString();setValue(is_exception,1,"i32");if(res===null||res===undefined)res="unknown exception";return BINDING.js_string_to_mono_string(res)}}finally{argsRoot.release();nameRoot.release()}}function _mono_wasm_release_cs_owned_object(js_handle){BINDING.bindings_lazy_init();BINDING._mono_wasm_release_js_handle(js_handle)}function _mono_wasm_remove_event_listener(objHandle,name,listener_gc_handle,capture){var nameRoot=MONO.mono_wasm_new_root(name);try{BINDING.bindings_lazy_init();var obj=BINDING.mono_wasm_get_jsobj_from_js_handle(objHandle);if(!obj)throw new Error("ERR11: Invalid JS object handle");var listener=BINDING._lookup_js_owned_object(listener_gc_handle);if(!listener)return;var sName=BINDING.conv_string(nameRoot.value);obj.removeEventListener(sName,listener,!!capture);if(!BINDING._use_finalization_registry){listener[BINDING.listener_registration_count_symbol]--;if(listener[BINDING.listener_registration_count_symbol]===0){BINDING._js_owned_object_table.delete(listener_gc_handle);BINDING._release_js_owned_object_by_gc_handle(listener_gc_handle)}}return 0}catch(exc){return BINDING.js_string_to_mono_string(exc.message)}finally{nameRoot.release()}}function _mono_wasm_set_by_index(js_handle,property_index,value,is_exception){var valueRoot=MONO.mono_wasm_new_root(value);try{BINDING.bindings_lazy_init();var obj=BINDING.mono_wasm_get_jsobj_from_js_handle(js_handle);if(!obj){setValue(is_exception,1,"i32");return BINDING.js_string_to_mono_string("ERR04: Invalid JS object handle '"+js_handle+"' while setting ["+property_index+"]")}var js_value=BINDING._unbox_mono_obj_root(valueRoot);try{obj[property_index]=js_value;return true}catch(e){var res=e.toString();setValue(is_exception,1,"i32");if(res===null||typeof res==="undefined")res="unknown exception";return BINDING.js_string_to_mono_string(res)}}finally{valueRoot.release()}}function _mono_wasm_set_object_property(js_handle,property_name,value,createIfNotExist,hasOwnProperty,is_exception){var valueRoot=MONO.mono_wasm_new_root(value),nameRoot=MONO.mono_wasm_new_root(property_name);try{BINDING.bindings_lazy_init();var property=BINDING.conv_string(nameRoot.value);if(!property){setValue(is_exception,1,"i32");return BINDING.js_string_to_mono_string("Invalid property name object '"+property_name+"'")}var js_obj=BINDING.mono_wasm_get_jsobj_from_js_handle(js_handle);if(!js_obj){setValue(is_exception,1,"i32");return BINDING.js_string_to_mono_string("ERR02: Invalid JS object handle '"+js_handle+"' while setting '"+property+"'")}var result=false;var js_value=BINDING._unbox_mono_obj_root(valueRoot);if(createIfNotExist){js_obj[property]=js_value;result=true}else{result=false;if(!createIfNotExist){if(!js_obj.hasOwnProperty(property))return false}if(hasOwnProperty===true){if(js_obj.hasOwnProperty(property)){js_obj[property]=js_value;result=true}}else{js_obj[property]=js_value;result=true}}return BINDING._box_js_bool(result)}finally{nameRoot.release();valueRoot.release()}}function _mono_wasm_typed_array_copy_from(js_handle,pinned_array,begin,end,bytes_per_element,is_exception){BINDING.bindings_lazy_init();var js_obj=BINDING.mono_wasm_get_jsobj_from_js_handle(js_handle);if(!js_obj){setValue(is_exception,1,"i32");return BINDING.js_string_to_mono_string("ERR08: Invalid JS object handle '"+js_handle+"'")}var res=BINDING.typedarray_copy_from(js_obj,pinned_array,begin,end,bytes_per_element);return BINDING._js_to_mono_obj(false,res)}function _mono_wasm_typed_array_copy_to(js_handle,pinned_array,begin,end,bytes_per_element,is_exception){BINDING.bindings_lazy_init();var js_obj=BINDING.mono_wasm_get_jsobj_from_js_handle(js_handle);if(!js_obj){setValue(is_exception,1,"i32");return BINDING.js_string_to_mono_string("ERR07: Invalid JS object handle '"+js_handle+"'")}var res=BINDING.typedarray_copy_to(js_obj,pinned_array,begin,end,bytes_per_element);return BINDING._js_to_mono_obj(false,res)}function _mono_wasm_typed_array_from(pinned_array,begin,end,bytes_per_element,type,is_exception){BINDING.bindings_lazy_init();var res=BINDING.typed_array_from(pinned_array,begin,end,bytes_per_element,type);return BINDING._js_to_mono_obj(true,res)}function _mono_wasm_typed_array_to_array(js_handle,is_exception){BINDING.bindings_lazy_init();var js_obj=BINDING.mono_wasm_get_jsobj_from_js_handle(js_handle);if(!js_obj){setValue(is_exception,1,"i32");return BINDING.js_string_to_mono_string("ERR06: Invalid JS object handle '"+js_handle+"'")}return BINDING.js_typed_array_to_array(js_obj,false)}function _schedule_background_exec(){++MONO.pump_count;if(typeof globalThis.setTimeout==="function"){globalThis.setTimeout(MONO.pump_message,0)}}function _setTempRet0(val){setTempRet0(val)}function __isLeapYear(year){return year%4===0&&(year%100!==0||year%400===0)}function __arraySum(array,index){var sum=0;for(var i=0;i<=index;sum+=array[i++]){}return sum}var __MONTH_DAYS_LEAP=[31,29,31,30,31,30,31,31,30,31,30,31];var __MONTH_DAYS_REGULAR=[31,28,31,30,31,30,31,31,30,31,30,31];function __addDays(date,days){var newDate=new Date(date.getTime());while(days>0){var leap=__isLeapYear(newDate.getFullYear());var currentMonth=newDate.getMonth();var daysInCurrentMonth=(leap?__MONTH_DAYS_LEAP:__MONTH_DAYS_REGULAR)[currentMonth];if(days>daysInCurrentMonth-newDate.getDate()){days-=daysInCurrentMonth-newDate.getDate()+1;newDate.setDate(1);if(currentMonth<11){newDate.setMonth(currentMonth+1)}else{newDate.setMonth(0);newDate.setFullYear(newDate.getFullYear()+1)}}else{newDate.setDate(newDate.getDate()+days);return newDate}}return newDate}function _strftime(s,maxsize,format,tm){var tm_zone=HEAP32[tm+40>>2];var date={tm_sec:HEAP32[tm>>2],tm_min:HEAP32[tm+4>>2],tm_hour:HEAP32[tm+8>>2],tm_mday:HEAP32[tm+12>>2],tm_mon:HEAP32[tm+16>>2],tm_year:HEAP32[tm+20>>2],tm_wday:HEAP32[tm+24>>2],tm_yday:HEAP32[tm+28>>2],tm_isdst:HEAP32[tm+32>>2],tm_gmtoff:HEAP32[tm+36>>2],tm_zone:tm_zone?UTF8ToString(tm_zone):""};var pattern=UTF8ToString(format);var EXPANSION_RULES_1={"%c":"%a %b %d %H:%M:%S %Y","%D":"%m/%d/%y","%F":"%Y-%m-%d","%h":"%b","%r":"%I:%M:%S %p","%R":"%H:%M","%T":"%H:%M:%S","%x":"%m/%d/%y","%X":"%H:%M:%S","%Ec":"%c","%EC":"%C","%Ex":"%m/%d/%y","%EX":"%H:%M:%S","%Ey":"%y","%EY":"%Y","%Od":"%d","%Oe":"%e","%OH":"%H","%OI":"%I","%Om":"%m","%OM":"%M","%OS":"%S","%Ou":"%u","%OU":"%U","%OV":"%V","%Ow":"%w","%OW":"%W","%Oy":"%y"};for(var rule in EXPANSION_RULES_1){pattern=pattern.replace(new RegExp(rule,"g"),EXPANSION_RULES_1[rule])}var WEEKDAYS=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"];var MONTHS=["January","February","March","April","May","June","July","August","September","October","November","December"];function leadingSomething(value,digits,character){var str=typeof value==="number"?value.toString():value||"";while(str.length0?1:0}var compare;if((compare=sgn(date1.getFullYear()-date2.getFullYear()))===0){if((compare=sgn(date1.getMonth()-date2.getMonth()))===0){compare=sgn(date1.getDate()-date2.getDate())}}return compare}function getFirstWeekStartDate(janFourth){switch(janFourth.getDay()){case 0:return new Date(janFourth.getFullYear()-1,11,29);case 1:return janFourth;case 2:return new Date(janFourth.getFullYear(),0,3);case 3:return new Date(janFourth.getFullYear(),0,2);case 4:return new Date(janFourth.getFullYear(),0,1);case 5:return new Date(janFourth.getFullYear()-1,11,31);case 6:return new Date(janFourth.getFullYear()-1,11,30)}}function getWeekBasedYear(date){var thisDate=__addDays(new Date(date.tm_year+1900,0,1),date.tm_yday);var janFourthThisYear=new Date(thisDate.getFullYear(),0,4);var janFourthNextYear=new Date(thisDate.getFullYear()+1,0,4);var firstWeekStartThisYear=getFirstWeekStartDate(janFourthThisYear);var firstWeekStartNextYear=getFirstWeekStartDate(janFourthNextYear);if(compareByDay(firstWeekStartThisYear,thisDate)<=0){if(compareByDay(firstWeekStartNextYear,thisDate)<=0){return thisDate.getFullYear()+1}else{return thisDate.getFullYear()}}else{return thisDate.getFullYear()-1}}var EXPANSION_RULES_2={"%a":function(date){return WEEKDAYS[date.tm_wday].substring(0,3)},"%A":function(date){return WEEKDAYS[date.tm_wday]},"%b":function(date){return MONTHS[date.tm_mon].substring(0,3)},"%B":function(date){return MONTHS[date.tm_mon]},"%C":function(date){var year=date.tm_year+1900;return leadingNulls(year/100|0,2)},"%d":function(date){return leadingNulls(date.tm_mday,2)},"%e":function(date){return leadingSomething(date.tm_mday,2," ")},"%g":function(date){return getWeekBasedYear(date).toString().substring(2)},"%G":function(date){return getWeekBasedYear(date)},"%H":function(date){return leadingNulls(date.tm_hour,2)},"%I":function(date){var twelveHour=date.tm_hour;if(twelveHour==0)twelveHour=12;else if(twelveHour>12)twelveHour-=12;return leadingNulls(twelveHour,2)},"%j":function(date){return leadingNulls(date.tm_mday+__arraySum(__isLeapYear(date.tm_year+1900)?__MONTH_DAYS_LEAP:__MONTH_DAYS_REGULAR,date.tm_mon-1),3)},"%m":function(date){return leadingNulls(date.tm_mon+1,2)},"%M":function(date){return leadingNulls(date.tm_min,2)},"%n":function(){return"\n"},"%p":function(date){if(date.tm_hour>=0&&date.tm_hour<12){return"AM"}else{return"PM"}},"%S":function(date){return leadingNulls(date.tm_sec,2)},"%t":function(){return"\t"},"%u":function(date){return date.tm_wday||7},"%U":function(date){var janFirst=new Date(date.tm_year+1900,0,1);var firstSunday=janFirst.getDay()===0?janFirst:__addDays(janFirst,7-janFirst.getDay());var endDate=new Date(date.tm_year+1900,date.tm_mon,date.tm_mday);if(compareByDay(firstSunday,endDate)<0){var februaryFirstUntilEndMonth=__arraySum(__isLeapYear(endDate.getFullYear())?__MONTH_DAYS_LEAP:__MONTH_DAYS_REGULAR,endDate.getMonth()-1)-31;var firstSundayUntilEndJanuary=31-firstSunday.getDate();var days=firstSundayUntilEndJanuary+februaryFirstUntilEndMonth+endDate.getDate();return leadingNulls(Math.ceil(days/7),2)}return compareByDay(firstSunday,janFirst)===0?"01":"00"},"%V":function(date){var janFourthThisYear=new Date(date.tm_year+1900,0,4);var janFourthNextYear=new Date(date.tm_year+1901,0,4);var firstWeekStartThisYear=getFirstWeekStartDate(janFourthThisYear);var firstWeekStartNextYear=getFirstWeekStartDate(janFourthNextYear);var endDate=__addDays(new Date(date.tm_year+1900,0,1),date.tm_yday);if(compareByDay(endDate,firstWeekStartThisYear)<0){return"53"}if(compareByDay(firstWeekStartNextYear,endDate)<=0){return"01"}var daysDifference;if(firstWeekStartThisYear.getFullYear()=0;off=Math.abs(off)/60;off=off/60*100+off%60;return(ahead?"+":"-")+String("0000"+off).slice(-4)},"%Z":function(date){return date.tm_zone},"%%":function(){return"%"}};for(var rule in EXPANSION_RULES_2){if(pattern.includes(rule)){pattern=pattern.replace(new RegExp(rule,"g"),EXPANSION_RULES_2[rule](date))}}var bytes=intArrayFromString(pattern,false);if(bytes.length>maxsize){return 0}writeArrayToMemory(bytes,s);return bytes.length-1}function _time(ptr){var ret=Date.now()/1e3|0;if(ptr){HEAP32[ptr>>2]=ret}return ret}var FSNode=function(parent,name,mode,rdev){if(!parent){parent=this}this.parent=parent;this.mount=parent.mount;this.mounted=null;this.id=FS.nextInode++;this.name=name;this.mode=mode;this.node_ops={};this.stream_ops={};this.rdev=rdev};var readMode=292|73;var writeMode=146;Object.defineProperties(FSNode.prototype,{read:{get:function(){return(this.mode&readMode)===readMode},set:function(val){val?this.mode|=readMode:this.mode&=~readMode}},write:{get:function(){return(this.mode&writeMode)===writeMode},set:function(val){val?this.mode|=writeMode:this.mode&=~writeMode}},isFolder:{get:function(){return FS.isDir(this.mode)}},isDevice:{get:function(){return FS.isChrdev(this.mode)}}});FS.FSNode=FSNode;FS.staticInit();Module["FS_createPath"]=FS.createPath;Module["FS_createDataFile"]=FS.createDataFile;Module["FS_createPath"]=FS.createPath;Module["FS_createDataFile"]=FS.createDataFile;Module["FS_createPreloadedFile"]=FS.createPreloadedFile;Module["FS_createLazyFile"]=FS.createLazyFile;Module["FS_createDevice"]=FS.createDevice;Module["FS_unlink"]=FS.unlink;MONO.export_functions(Module);BINDING.export_functions(Module);var ASSERTIONS=false;function intArrayFromString(stringy,dontAddNull,length){var len=length>0?length:lengthBytesUTF8(stringy)+1;var u8array=new Array(len);var numBytesWritten=stringToUTF8Array(stringy,u8array,0,u8array.length);if(dontAddNull)u8array.length=numBytesWritten;return u8array}var asmLibraryArg={"__assert_fail":___assert_fail,"__clock_gettime":___clock_gettime,"__cxa_allocate_exception":___cxa_allocate_exception,"__cxa_begin_catch":___cxa_begin_catch,"__cxa_end_catch":___cxa_end_catch,"__cxa_find_matching_catch_3":___cxa_find_matching_catch_3,"__cxa_throw":___cxa_throw,"__resumeException":___resumeException,"__sys_access":___sys_access,"__sys_chdir":___sys_chdir,"__sys_chmod":___sys_chmod,"__sys_connect":___sys_connect,"__sys_fadvise64_64":___sys_fadvise64_64,"__sys_fchmod":___sys_fchmod,"__sys_fcntl64":___sys_fcntl64,"__sys_fstat64":___sys_fstat64,"__sys_fstatfs64":___sys_fstatfs64,"__sys_ftruncate64":___sys_ftruncate64,"__sys_getcwd":___sys_getcwd,"__sys_getdents64":___sys_getdents64,"__sys_getpid":___sys_getpid,"__sys_getrusage":___sys_getrusage,"__sys_ioctl":___sys_ioctl,"__sys_link":___sys_link,"__sys_lstat64":___sys_lstat64,"__sys_madvise1":___sys_madvise1,"__sys_mkdir":___sys_mkdir,"__sys_mmap2":___sys_mmap2,"__sys_msync":___sys_msync,"__sys_munmap":___sys_munmap,"__sys_open":___sys_open,"__sys_readlink":___sys_readlink,"__sys_recvfrom":___sys_recvfrom,"__sys_rename":___sys_rename,"__sys_rmdir":___sys_rmdir,"__sys_sendto":___sys_sendto,"__sys_setsockopt":___sys_setsockopt,"__sys_shutdown":___sys_shutdown,"__sys_socket":___sys_socket,"__sys_stat64":___sys_stat64,"__sys_symlink":___sys_symlink,"__sys_unlink":___sys_unlink,"__sys_utimensat":___sys_utimensat,"abort":_abort,"clock_getres":_clock_getres,"clock_gettime":_clock_gettime,"compile_function":compile_function,"difftime":_difftime,"dotnet_browser_entropy":_dotnet_browser_entropy,"emscripten_asm_const_int":_emscripten_asm_const_int,"emscripten_get_heap_max":_emscripten_get_heap_max,"emscripten_memcpy_big":_emscripten_memcpy_big,"emscripten_resize_heap":_emscripten_resize_heap,"emscripten_thread_sleep":_emscripten_thread_sleep,"environ_get":_environ_get,"environ_sizes_get":_environ_sizes_get,"exit":_exit,"fd_close":_fd_close,"fd_fdstat_get":_fd_fdstat_get,"fd_pread":_fd_pread,"fd_pwrite":_fd_pwrite,"fd_read":_fd_read,"fd_seek":_fd_seek,"fd_sync":_fd_sync,"fd_write":_fd_write,"flock":_flock,"gai_strerror":_gai_strerror,"getTempRet0":_getTempRet0,"gettimeofday":_gettimeofday,"gmtime_r":_gmtime_r,"invoke_vi":invoke_vi,"llvm_eh_typeid_for":_llvm_eh_typeid_for,"localtime_r":_localtime_r,"mono_set_timeout":_mono_set_timeout,"mono_wasm_add_event_listener":_mono_wasm_add_event_listener,"mono_wasm_asm_loaded":_mono_wasm_asm_loaded,"mono_wasm_create_cs_owned_object":_mono_wasm_create_cs_owned_object,"mono_wasm_fire_debugger_agent_message":_mono_wasm_fire_debugger_agent_message,"mono_wasm_get_by_index":_mono_wasm_get_by_index,"mono_wasm_get_global_object":_mono_wasm_get_global_object,"mono_wasm_get_object_property":_mono_wasm_get_object_property,"mono_wasm_invoke_js_blazor":_mono_wasm_invoke_js_blazor,"mono_wasm_invoke_js_marshalled":_mono_wasm_invoke_js_marshalled,"mono_wasm_invoke_js_unmarshalled":_mono_wasm_invoke_js_unmarshalled,"mono_wasm_invoke_js_with_args":_mono_wasm_invoke_js_with_args,"mono_wasm_release_cs_owned_object":_mono_wasm_release_cs_owned_object,"mono_wasm_remove_event_listener":_mono_wasm_remove_event_listener,"mono_wasm_set_by_index":_mono_wasm_set_by_index,"mono_wasm_set_object_property":_mono_wasm_set_object_property,"mono_wasm_typed_array_copy_from":_mono_wasm_typed_array_copy_from,"mono_wasm_typed_array_copy_to":_mono_wasm_typed_array_copy_to,"mono_wasm_typed_array_from":_mono_wasm_typed_array_from,"mono_wasm_typed_array_to_array":_mono_wasm_typed_array_to_array,"schedule_background_exec":_schedule_background_exec,"setTempRet0":_setTempRet0,"strftime":_strftime,"time":_time,"tzset":_tzset};var asm=createWasm();var ___wasm_call_ctors=Module["___wasm_call_ctors"]=function(){return(___wasm_call_ctors=Module["___wasm_call_ctors"]=Module["asm"]["__wasm_call_ctors"]).apply(null,arguments)};var _mono_wasm_register_root=Module["_mono_wasm_register_root"]=function(){return(_mono_wasm_register_root=Module["_mono_wasm_register_root"]=Module["asm"]["mono_wasm_register_root"]).apply(null,arguments)};var _mono_wasm_deregister_root=Module["_mono_wasm_deregister_root"]=function(){return(_mono_wasm_deregister_root=Module["_mono_wasm_deregister_root"]=Module["asm"]["mono_wasm_deregister_root"]).apply(null,arguments)};var _mono_wasm_add_assembly=Module["_mono_wasm_add_assembly"]=function(){return(_mono_wasm_add_assembly=Module["_mono_wasm_add_assembly"]=Module["asm"]["mono_wasm_add_assembly"]).apply(null,arguments)};var _mono_wasm_add_satellite_assembly=Module["_mono_wasm_add_satellite_assembly"]=function(){return(_mono_wasm_add_satellite_assembly=Module["_mono_wasm_add_satellite_assembly"]=Module["asm"]["mono_wasm_add_satellite_assembly"]).apply(null,arguments)};var _mono_wasm_setenv=Module["_mono_wasm_setenv"]=function(){return(_mono_wasm_setenv=Module["_mono_wasm_setenv"]=Module["asm"]["mono_wasm_setenv"]).apply(null,arguments)};var _free=Module["_free"]=function(){return(_free=Module["_free"]=Module["asm"]["free"]).apply(null,arguments)};var _mono_wasm_register_bundled_satellite_assemblies=Module["_mono_wasm_register_bundled_satellite_assemblies"]=function(){return(_mono_wasm_register_bundled_satellite_assemblies=Module["_mono_wasm_register_bundled_satellite_assemblies"]=Module["asm"]["mono_wasm_register_bundled_satellite_assemblies"]).apply(null,arguments)};var _mono_wasm_load_runtime=Module["_mono_wasm_load_runtime"]=function(){return(_mono_wasm_load_runtime=Module["_mono_wasm_load_runtime"]=Module["asm"]["mono_wasm_load_runtime"]).apply(null,arguments)};var _malloc=Module["_malloc"]=function(){return(_malloc=Module["_malloc"]=Module["asm"]["malloc"]).apply(null,arguments)};var _mono_wasm_assembly_load=Module["_mono_wasm_assembly_load"]=function(){return(_mono_wasm_assembly_load=Module["_mono_wasm_assembly_load"]=Module["asm"]["mono_wasm_assembly_load"]).apply(null,arguments)};var _mono_wasm_find_corlib_class=Module["_mono_wasm_find_corlib_class"]=function(){return(_mono_wasm_find_corlib_class=Module["_mono_wasm_find_corlib_class"]=Module["asm"]["mono_wasm_find_corlib_class"]).apply(null,arguments)};var _mono_wasm_assembly_find_class=Module["_mono_wasm_assembly_find_class"]=function(){return(_mono_wasm_assembly_find_class=Module["_mono_wasm_assembly_find_class"]=Module["asm"]["mono_wasm_assembly_find_class"]).apply(null,arguments)};var _mono_wasm_assembly_find_method=Module["_mono_wasm_assembly_find_method"]=function(){return(_mono_wasm_assembly_find_method=Module["_mono_wasm_assembly_find_method"]=Module["asm"]["mono_wasm_assembly_find_method"]).apply(null,arguments)};var _mono_wasm_get_delegate_invoke=Module["_mono_wasm_get_delegate_invoke"]=function(){return(_mono_wasm_get_delegate_invoke=Module["_mono_wasm_get_delegate_invoke"]=Module["asm"]["mono_wasm_get_delegate_invoke"]).apply(null,arguments)};var _mono_wasm_box_primitive=Module["_mono_wasm_box_primitive"]=function(){return(_mono_wasm_box_primitive=Module["_mono_wasm_box_primitive"]=Module["asm"]["mono_wasm_box_primitive"]).apply(null,arguments)};var _mono_wasm_invoke_method=Module["_mono_wasm_invoke_method"]=function(){return(_mono_wasm_invoke_method=Module["_mono_wasm_invoke_method"]=Module["asm"]["mono_wasm_invoke_method"]).apply(null,arguments)};var _mono_wasm_assembly_get_entry_point=Module["_mono_wasm_assembly_get_entry_point"]=function(){return(_mono_wasm_assembly_get_entry_point=Module["_mono_wasm_assembly_get_entry_point"]=Module["asm"]["mono_wasm_assembly_get_entry_point"]).apply(null,arguments)};var _mono_wasm_string_get_utf8=Module["_mono_wasm_string_get_utf8"]=function(){return(_mono_wasm_string_get_utf8=Module["_mono_wasm_string_get_utf8"]=Module["asm"]["mono_wasm_string_get_utf8"]).apply(null,arguments)};var _mono_wasm_string_convert=Module["_mono_wasm_string_convert"]=function(){return(_mono_wasm_string_convert=Module["_mono_wasm_string_convert"]=Module["asm"]["mono_wasm_string_convert"]).apply(null,arguments)};var _mono_wasm_string_from_js=Module["_mono_wasm_string_from_js"]=function(){return(_mono_wasm_string_from_js=Module["_mono_wasm_string_from_js"]=Module["asm"]["mono_wasm_string_from_js"]).apply(null,arguments)};var _mono_wasm_string_from_utf16=Module["_mono_wasm_string_from_utf16"]=function(){return(_mono_wasm_string_from_utf16=Module["_mono_wasm_string_from_utf16"]=Module["asm"]["mono_wasm_string_from_utf16"]).apply(null,arguments)};var _mono_wasm_get_obj_type=Module["_mono_wasm_get_obj_type"]=function(){return(_mono_wasm_get_obj_type=Module["_mono_wasm_get_obj_type"]=Module["asm"]["mono_wasm_get_obj_type"]).apply(null,arguments)};var _mono_wasm_try_unbox_primitive_and_get_type=Module["_mono_wasm_try_unbox_primitive_and_get_type"]=function(){return(_mono_wasm_try_unbox_primitive_and_get_type=Module["_mono_wasm_try_unbox_primitive_and_get_type"]=Module["asm"]["mono_wasm_try_unbox_primitive_and_get_type"]).apply(null,arguments)};var _mono_unbox_int=Module["_mono_unbox_int"]=function(){return(_mono_unbox_int=Module["_mono_unbox_int"]=Module["asm"]["mono_unbox_int"]).apply(null,arguments)};var _mono_wasm_array_length=Module["_mono_wasm_array_length"]=function(){return(_mono_wasm_array_length=Module["_mono_wasm_array_length"]=Module["asm"]["mono_wasm_array_length"]).apply(null,arguments)};var _mono_wasm_array_get=Module["_mono_wasm_array_get"]=function(){return(_mono_wasm_array_get=Module["_mono_wasm_array_get"]=Module["asm"]["mono_wasm_array_get"]).apply(null,arguments)};var _mono_wasm_obj_array_new=Module["_mono_wasm_obj_array_new"]=function(){return(_mono_wasm_obj_array_new=Module["_mono_wasm_obj_array_new"]=Module["asm"]["mono_wasm_obj_array_new"]).apply(null,arguments)};var _mono_wasm_obj_array_set=Module["_mono_wasm_obj_array_set"]=function(){return(_mono_wasm_obj_array_set=Module["_mono_wasm_obj_array_set"]=Module["asm"]["mono_wasm_obj_array_set"]).apply(null,arguments)};var _mono_wasm_string_array_new=Module["_mono_wasm_string_array_new"]=function(){return(_mono_wasm_string_array_new=Module["_mono_wasm_string_array_new"]=Module["asm"]["mono_wasm_string_array_new"]).apply(null,arguments)};var _mono_wasm_exec_regression=Module["_mono_wasm_exec_regression"]=function(){return(_mono_wasm_exec_regression=Module["_mono_wasm_exec_regression"]=Module["asm"]["mono_wasm_exec_regression"]).apply(null,arguments)};var _mono_wasm_exit=Module["_mono_wasm_exit"]=function(){return(_mono_wasm_exit=Module["_mono_wasm_exit"]=Module["asm"]["mono_wasm_exit"]).apply(null,arguments)};var _mono_wasm_set_main_args=Module["_mono_wasm_set_main_args"]=function(){return(_mono_wasm_set_main_args=Module["_mono_wasm_set_main_args"]=Module["asm"]["mono_wasm_set_main_args"]).apply(null,arguments)};var _mono_wasm_strdup=Module["_mono_wasm_strdup"]=function(){return(_mono_wasm_strdup=Module["_mono_wasm_strdup"]=Module["asm"]["mono_wasm_strdup"]).apply(null,arguments)};var _mono_wasm_parse_runtime_options=Module["_mono_wasm_parse_runtime_options"]=function(){return(_mono_wasm_parse_runtime_options=Module["_mono_wasm_parse_runtime_options"]=Module["asm"]["mono_wasm_parse_runtime_options"]).apply(null,arguments)};var _mono_wasm_enable_on_demand_gc=Module["_mono_wasm_enable_on_demand_gc"]=function(){return(_mono_wasm_enable_on_demand_gc=Module["_mono_wasm_enable_on_demand_gc"]=Module["asm"]["mono_wasm_enable_on_demand_gc"]).apply(null,arguments)};var _mono_wasm_intern_string=Module["_mono_wasm_intern_string"]=function(){return(_mono_wasm_intern_string=Module["_mono_wasm_intern_string"]=Module["asm"]["mono_wasm_intern_string"]).apply(null,arguments)};var _mono_wasm_string_get_data=Module["_mono_wasm_string_get_data"]=function(){return(_mono_wasm_string_get_data=Module["_mono_wasm_string_get_data"]=Module["asm"]["mono_wasm_string_get_data"]).apply(null,arguments)};var _mono_wasm_typed_array_new=Module["_mono_wasm_typed_array_new"]=function(){return(_mono_wasm_typed_array_new=Module["_mono_wasm_typed_array_new"]=Module["asm"]["mono_wasm_typed_array_new"]).apply(null,arguments)};var _mono_wasm_unbox_enum=Module["_mono_wasm_unbox_enum"]=function(){return(_mono_wasm_unbox_enum=Module["_mono_wasm_unbox_enum"]=Module["asm"]["mono_wasm_unbox_enum"]).apply(null,arguments)};var _memset=Module["_memset"]=function(){return(_memset=Module["_memset"]=Module["asm"]["memset"]).apply(null,arguments)};var ___errno_location=Module["___errno_location"]=function(){return(___errno_location=Module["___errno_location"]=Module["asm"]["__errno_location"]).apply(null,arguments)};var _putchar=Module["_putchar"]=function(){return(_putchar=Module["_putchar"]=Module["asm"]["putchar"]).apply(null,arguments)};var _mono_background_exec=Module["_mono_background_exec"]=function(){return(_mono_background_exec=Module["_mono_background_exec"]=Module["asm"]["mono_background_exec"]).apply(null,arguments)};var _mono_wasm_get_icudt_name=Module["_mono_wasm_get_icudt_name"]=function(){return(_mono_wasm_get_icudt_name=Module["_mono_wasm_get_icudt_name"]=Module["asm"]["mono_wasm_get_icudt_name"]).apply(null,arguments)};var _mono_wasm_load_icu_data=Module["_mono_wasm_load_icu_data"]=function(){return(_mono_wasm_load_icu_data=Module["_mono_wasm_load_icu_data"]=Module["asm"]["mono_wasm_load_icu_data"]).apply(null,arguments)};var _mono_print_method_from_ip=Module["_mono_print_method_from_ip"]=function(){return(_mono_print_method_from_ip=Module["_mono_print_method_from_ip"]=Module["asm"]["mono_print_method_from_ip"]).apply(null,arguments)};var _mono_set_timeout_exec=Module["_mono_set_timeout_exec"]=function(){return(_mono_set_timeout_exec=Module["_mono_set_timeout_exec"]=Module["asm"]["mono_set_timeout_exec"]).apply(null,arguments)};var _htons=Module["_htons"]=function(){return(_htons=Module["_htons"]=Module["asm"]["htons"]).apply(null,arguments)};var _mono_wasm_set_is_debugger_attached=Module["_mono_wasm_set_is_debugger_attached"]=function(){return(_mono_wasm_set_is_debugger_attached=Module["_mono_wasm_set_is_debugger_attached"]=Module["asm"]["mono_wasm_set_is_debugger_attached"]).apply(null,arguments)};var _mono_wasm_send_dbg_command_with_parms=Module["_mono_wasm_send_dbg_command_with_parms"]=function(){return(_mono_wasm_send_dbg_command_with_parms=Module["_mono_wasm_send_dbg_command_with_parms"]=Module["asm"]["mono_wasm_send_dbg_command_with_parms"]).apply(null,arguments)};var _mono_wasm_send_dbg_command=Module["_mono_wasm_send_dbg_command"]=function(){return(_mono_wasm_send_dbg_command=Module["_mono_wasm_send_dbg_command"]=Module["asm"]["mono_wasm_send_dbg_command"]).apply(null,arguments)};var _ntohs=Module["_ntohs"]=function(){return(_ntohs=Module["_ntohs"]=Module["asm"]["ntohs"]).apply(null,arguments)};var _emscripten_main_thread_process_queued_calls=Module["_emscripten_main_thread_process_queued_calls"]=function(){return(_emscripten_main_thread_process_queued_calls=Module["_emscripten_main_thread_process_queued_calls"]=Module["asm"]["emscripten_main_thread_process_queued_calls"]).apply(null,arguments)};var _htonl=Module["_htonl"]=function(){return(_htonl=Module["_htonl"]=Module["asm"]["htonl"]).apply(null,arguments)};var __get_tzname=Module["__get_tzname"]=function(){return(__get_tzname=Module["__get_tzname"]=Module["asm"]["_get_tzname"]).apply(null,arguments)};var __get_daylight=Module["__get_daylight"]=function(){return(__get_daylight=Module["__get_daylight"]=Module["asm"]["_get_daylight"]).apply(null,arguments)};var __get_timezone=Module["__get_timezone"]=function(){return(__get_timezone=Module["__get_timezone"]=Module["asm"]["_get_timezone"]).apply(null,arguments)};var stackSave=Module["stackSave"]=function(){return(stackSave=Module["stackSave"]=Module["asm"]["stackSave"]).apply(null,arguments)};var stackRestore=Module["stackRestore"]=function(){return(stackRestore=Module["stackRestore"]=Module["asm"]["stackRestore"]).apply(null,arguments)};var stackAlloc=Module["stackAlloc"]=function(){return(stackAlloc=Module["stackAlloc"]=Module["asm"]["stackAlloc"]).apply(null,arguments)};var _setThrew=Module["_setThrew"]=function(){return(_setThrew=Module["_setThrew"]=Module["asm"]["setThrew"]).apply(null,arguments)};var ___cxa_can_catch=Module["___cxa_can_catch"]=function(){return(___cxa_can_catch=Module["___cxa_can_catch"]=Module["asm"]["__cxa_can_catch"]).apply(null,arguments)};var ___cxa_is_pointer_type=Module["___cxa_is_pointer_type"]=function(){return(___cxa_is_pointer_type=Module["___cxa_is_pointer_type"]=Module["asm"]["__cxa_is_pointer_type"]).apply(null,arguments)};var _memalign=Module["_memalign"]=function(){return(_memalign=Module["_memalign"]=Module["asm"]["memalign"]).apply(null,arguments)};var dynCall_iijj=Module["dynCall_iijj"]=function(){return(dynCall_iijj=Module["dynCall_iijj"]=Module["asm"]["dynCall_iijj"]).apply(null,arguments)};var dynCall_iij=Module["dynCall_iij"]=function(){return(dynCall_iij=Module["dynCall_iij"]=Module["asm"]["dynCall_iij"]).apply(null,arguments)};var dynCall_ji=Module["dynCall_ji"]=function(){return(dynCall_ji=Module["dynCall_ji"]=Module["asm"]["dynCall_ji"]).apply(null,arguments)};var dynCall_j=Module["dynCall_j"]=function(){return(dynCall_j=Module["dynCall_j"]=Module["asm"]["dynCall_j"]).apply(null,arguments)};var dynCall_iijji=Module["dynCall_iijji"]=function(){return(dynCall_iijji=Module["dynCall_iijji"]=Module["asm"]["dynCall_iijji"]).apply(null,arguments)};var dynCall_jiji=Module["dynCall_jiji"]=function(){return(dynCall_jiji=Module["dynCall_jiji"]=Module["asm"]["dynCall_jiji"]).apply(null,arguments)};var dynCall_iiji=Module["dynCall_iiji"]=function(){return(dynCall_iiji=Module["dynCall_iiji"]=Module["asm"]["dynCall_iiji"]).apply(null,arguments)};var dynCall_iijiiij=Module["dynCall_iijiiij"]=function(){return(dynCall_iijiiij=Module["dynCall_iijiiij"]=Module["asm"]["dynCall_iijiiij"]).apply(null,arguments)};var dynCall_iiiij=Module["dynCall_iiiij"]=function(){return(dynCall_iiiij=Module["dynCall_iiiij"]=Module["asm"]["dynCall_iiiij"]).apply(null,arguments)};var dynCall_jiiij=Module["dynCall_jiiij"]=function(){return(dynCall_jiiij=Module["dynCall_jiiij"]=Module["asm"]["dynCall_jiiij"]).apply(null,arguments)};var dynCall_viiijjii=Module["dynCall_viiijjii"]=function(){return(dynCall_viiijjii=Module["dynCall_viiijjii"]=Module["asm"]["dynCall_viiijjii"]).apply(null,arguments)};var dynCall_jd=Module["dynCall_jd"]=function(){return(dynCall_jd=Module["dynCall_jd"]=Module["asm"]["dynCall_jd"]).apply(null,arguments)};var dynCall_jf=Module["dynCall_jf"]=function(){return(dynCall_jf=Module["dynCall_jf"]=Module["asm"]["dynCall_jf"]).apply(null,arguments)};var dynCall_jiiiiiiiii=Module["dynCall_jiiiiiiiii"]=function(){return(dynCall_jiiiiiiiii=Module["dynCall_jiiiiiiiii"]=Module["asm"]["dynCall_jiiiiiiiii"]).apply(null,arguments)};var dynCall_vj=Module["dynCall_vj"]=function(){return(dynCall_vj=Module["dynCall_vj"]=Module["asm"]["dynCall_vj"]).apply(null,arguments)};var dynCall_iji=Module["dynCall_iji"]=function(){return(dynCall_iji=Module["dynCall_iji"]=Module["asm"]["dynCall_iji"]).apply(null,arguments)};var dynCall_ij=Module["dynCall_ij"]=function(){return(dynCall_ij=Module["dynCall_ij"]=Module["asm"]["dynCall_ij"]).apply(null,arguments)};var dynCall_jj=Module["dynCall_jj"]=function(){return(dynCall_jj=Module["dynCall_jj"]=Module["asm"]["dynCall_jj"]).apply(null,arguments)};var dynCall_iiijiiiii=Module["dynCall_iiijiiiii"]=function(){return(dynCall_iiijiiiii=Module["dynCall_iiijiiiii"]=Module["asm"]["dynCall_iiijiiiii"]).apply(null,arguments)};var dynCall_vijj=Module["dynCall_vijj"]=function(){return(dynCall_vijj=Module["dynCall_vijj"]=Module["asm"]["dynCall_vijj"]).apply(null,arguments)};var dynCall_iiijiiii=Module["dynCall_iiijiiii"]=function(){return(dynCall_iiijiiii=Module["dynCall_iiijiiii"]=Module["asm"]["dynCall_iiijiiii"]).apply(null,arguments)};var dynCall_jiiiii=Module["dynCall_jiiiii"]=function(){return(dynCall_jiiiii=Module["dynCall_jiiiii"]=Module["asm"]["dynCall_jiiiii"]).apply(null,arguments)};var dynCall_jij=Module["dynCall_jij"]=function(){return(dynCall_jij=Module["dynCall_jij"]=Module["asm"]["dynCall_jij"]).apply(null,arguments)};var dynCall_jijj=Module["dynCall_jijj"]=function(){return(dynCall_jijj=Module["dynCall_jijj"]=Module["asm"]["dynCall_jijj"]).apply(null,arguments)};var dynCall_iijjiii=Module["dynCall_iijjiii"]=function(){return(dynCall_iijjiii=Module["dynCall_iijjiii"]=Module["asm"]["dynCall_iijjiii"]).apply(null,arguments)};var dynCall_vijjjii=Module["dynCall_vijjjii"]=function(){return(dynCall_vijjjii=Module["dynCall_vijjjii"]=Module["asm"]["dynCall_vijjjii"]).apply(null,arguments)};var dynCall_iijii=Module["dynCall_iijii"]=function(){return(dynCall_iijii=Module["dynCall_iijii"]=Module["asm"]["dynCall_iijii"]).apply(null,arguments)};var dynCall_iijiii=Module["dynCall_iijiii"]=function(){return(dynCall_iijiii=Module["dynCall_iijiii"]=Module["asm"]["dynCall_iijiii"]).apply(null,arguments)};var dynCall_vijiiii=Module["dynCall_vijiiii"]=function(){return(dynCall_vijiiii=Module["dynCall_vijiiii"]=Module["asm"]["dynCall_vijiiii"]).apply(null,arguments)};var dynCall_iijiiii=Module["dynCall_iijiiii"]=function(){return(dynCall_iijiiii=Module["dynCall_iijiiii"]=Module["asm"]["dynCall_iijiiii"]).apply(null,arguments)};var dynCall_vij=Module["dynCall_vij"]=function(){return(dynCall_vij=Module["dynCall_vij"]=Module["asm"]["dynCall_vij"]).apply(null,arguments)};var dynCall_jii=Module["dynCall_jii"]=function(){return(dynCall_jii=Module["dynCall_jii"]=Module["asm"]["dynCall_jii"]).apply(null,arguments)};function invoke_vi(index,a1){var sp=stackSave();try{wasmTable.get(index)(a1)}catch(e){stackRestore(sp);if(e!==e+0&&e!=="longjmp")throw e;_setThrew(1,0)}}Module["ccall"]=ccall;Module["cwrap"]=cwrap;Module["setValue"]=setValue;Module["getValue"]=getValue;Module["UTF8ArrayToString"]=UTF8ArrayToString;Module["UTF8ToString"]=UTF8ToString;Module["addRunDependency"]=addRunDependency;Module["removeRunDependency"]=removeRunDependency;Module["FS_createPath"]=FS.createPath;Module["FS_createDataFile"]=FS.createDataFile;Module["FS_createPreloadedFile"]=FS.createPreloadedFile;Module["FS_createLazyFile"]=FS.createLazyFile;Module["FS_createDevice"]=FS.createDevice;Module["FS_unlink"]=FS.unlink;Module["addFunction"]=addFunction;var calledRun;function ExitStatus(status){this.name="ExitStatus";this.message="Program terminated with exit("+status+")";this.status=status}dependenciesFulfilled=function runCaller(){if(!calledRun)run();if(!calledRun)dependenciesFulfilled=runCaller};function run(args){args=args||arguments_;if(runDependencies>0){return}preRun();if(runDependencies>0){return}function doRun(){if(calledRun)return;calledRun=true;Module["calledRun"]=true;if(ABORT)return;initRuntime();if(Module["onRuntimeInitialized"])Module["onRuntimeInitialized"]();postRun()}if(Module["setStatus"]){Module["setStatus"]("Running...");setTimeout(function(){setTimeout(function(){Module["setStatus"]("")},1);doRun()},1)}else{doRun()}}Module["run"]=run;function exit(status,implicit){EXITSTATUS=status;if(implicit&&keepRuntimeAlive()&&status===0){return}if(keepRuntimeAlive()){}else{exitRuntime();if(Module["onExit"])Module["onExit"](status);ABORT=true}quit_(status,new ExitStatus(status))}if(Module["preInit"]){if(typeof Module["preInit"]=="function")Module["preInit"]=[Module["preInit"]];while(Module["preInit"].length>0){Module["preInit"].pop()()}}run(); + +// SIG // Begin signature block +// SIG // MIIojgYJKoZIhvcNAQcCoIIofzCCKHsCAQExDzANBglg +// SIG // hkgBZQMEAgEFADB3BgorBgEEAYI3AgEEoGkwZzAyBgor +// SIG // BgEEAYI3AgEeMCQCAQEEEBDgyQbOONQRoqMAEEvTUJAC +// SIG // AQACAQACAQACAQACAQAwMTANBglghkgBZQMEAgEFAAQg +// SIG // ZJeJxKO1VGCjHxrshb3IZcwkUCKnrImdcVQvXM4kEEyg +// SIG // gg3wMIIGbjCCBFagAwIBAgITMwAAAo1+R8OCfgUaKgAA +// SIG // AAACjTANBgkqhkiG9w0BAQwFADB+MQswCQYDVQQGEwJV +// SIG // UzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMH +// SIG // UmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBv +// SIG // cmF0aW9uMSgwJgYDVQQDEx9NaWNyb3NvZnQgQ29kZSBT +// SIG // aWduaW5nIFBDQSAyMDExMB4XDTIxMTAxNDE4NDUxNFoX +// SIG // DTIyMTAxMzE4NDUxNFowYzELMAkGA1UEBhMCVVMxEzAR +// SIG // BgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1v +// SIG // bmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlv +// SIG // bjENMAsGA1UEAxMELk5FVDCCAaIwDQYJKoZIhvcNAQEB +// SIG // BQADggGPADCCAYoCggGBAM+nYwbxkHhF3CQTxhfbfq0y +// SIG // Y9iNmf+vpsXyHr+W14sNKW2VmN48wwUttFgkElZWXDR7 +// SIG // /LVrKRjN1wUWy/bzsFToydMsiIzNT1HUivMfeT/cykpT +// SIG // N/cVL/ZvvGrnhJeXQEn1xrnGNqW3ps0NjQQLPd2fvIy1 +// SIG // Y/YAIh9r2+dHkYj+VjmEtv9v7r2jbtklWw6OFgOwkB8f +// SIG // GA+15Qiny+1dE5WvItLj/DGrPmCWz4MVgfG42ntE481F +// SIG // Ly4U74rBEDtaNahOtPUSS8yTjUeNIgi3eTkznStetnjg +// SIG // r+Bn0Io4KhMqkwA7cav5wxlORTU/OTdM6PVJrw6NKC6I +// SIG // ztKqeOjlFs26h1c5eBY6ZKIbBwNkDQuSq/P52gOjsTzh +// SIG // /s+9JPwbXzr/plrAXIXZh178HTrsr5gP9iaPXWIMDvlM +// SIG // Fw54saZB68Hh+D1XiAKmOvct4etdk8v8wlJ96O3j8S2o +// SIG // omSdqcALeycc7hVnpJ8j6hFVW9hXFRqSb9VYn18cMu5u +// SIG // 3WvIkQIDAQABo4IBfjCCAXowHwYDVR0lBBgwFgYKKwYB +// SIG // BAGCN0wIAQYIKwYBBQUHAwMwHQYDVR0OBBYEFB4HrzFI +// SIG // RagJ4H8x6Jocx6igXl7OMFAGA1UdEQRJMEekRTBDMSkw +// SIG // JwYDVQQLEyBNaWNyb3NvZnQgT3BlcmF0aW9ucyBQdWVy +// SIG // dG8gUmljbzEWMBQGA1UEBRMNNDY0MjIzKzQ2ODYyNjAf +// SIG // BgNVHSMEGDAWgBRIbmTlUAXTgqoXNzcitW2oynUClTBU +// SIG // BgNVHR8ETTBLMEmgR6BFhkNodHRwOi8vd3d3Lm1pY3Jv +// SIG // c29mdC5jb20vcGtpb3BzL2NybC9NaWNDb2RTaWdQQ0Ey +// SIG // MDExXzIwMTEtMDctMDguY3JsMGEGCCsGAQUFBwEBBFUw +// SIG // UzBRBggrBgEFBQcwAoZFaHR0cDovL3d3dy5taWNyb3Nv +// SIG // ZnQuY29tL3BraW9wcy9jZXJ0cy9NaWNDb2RTaWdQQ0Ey +// SIG // MDExXzIwMTEtMDctMDguY3J0MAwGA1UdEwEB/wQCMAAw +// SIG // DQYJKoZIhvcNAQEMBQADggIBAB4qmkYG7kKK3A6/oZNe +// SIG // IP9JhNg7SX+VnacQGuwIHW2TxICObVUVh7Pq8m+xG9Ec +// SIG // o4Wl8AoArhOWnp3IMWFiF+vxGD7zaJpG77kxFXDewsA8 +// SIG // PnehwnMfHq6TliI5/65+FZB4Kf5Ey16s2Qk6nTSq/bsg +// SIG // T572aCkU9hPd5WXukhRfuQOnWn6lRWREhcqAReuFmik5 +// SIG // YD+hgJZgo3sCDc01hVEgOIdwgjXMENALrAgaQlp/QFRX +// SIG // +DMRpW96eyFoKFRWiRudBhtSqf9I+WmTgzK9QStgT8mn +// SIG // njaY70f8/dcqs0nv4wrWb438wT1xddyIrQXMnObYZCqb +// SIG // 7JDNTPfRpKpfAykwhRmAJDDvDn/zNmlz/vcaU4+WLtBV +// SIG // 2zpyk4oVcZzJgMWgGl3gdg8+fNAcLoQwfRqk+wYJccu+ +// SIG // IX8lR0h+CygomPKALmxSb2ShJsU3BXXd6E135PgCkPsv +// SIG // x3ntyeorbcAshUOIaqJamTOdWkNf5X97QoTDEuPsS2tI +// SIG // zI3munvtDZ14nykyYjf4eX8NR6pAwOEgMrWQ14taSKq6 +// SIG // MaXNucGaqCzFw/L+4p115iZbOo69+OuOhbVNB2tIZjeK +// SIG // YE7QKKU+lAdzgZUacya+Mg1Ku3ndGdvDB8IT735c3nU3 +// SIG // 8LV8Ytut5jxvaiA1om3DNumfVNAITHgnJF8p7x1DzIA5 +// SIG // Nax2MIIHejCCBWKgAwIBAgIKYQ6Q0gAAAAAAAzANBgkq +// SIG // hkiG9w0BAQsFADCBiDELMAkGA1UEBhMCVVMxEzARBgNV +// SIG // BAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +// SIG // HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEy +// SIG // MDAGA1UEAxMpTWljcm9zb2Z0IFJvb3QgQ2VydGlmaWNh +// SIG // dGUgQXV0aG9yaXR5IDIwMTEwHhcNMTEwNzA4MjA1OTA5 +// SIG // WhcNMjYwNzA4MjEwOTA5WjB+MQswCQYDVQQGEwJVUzET +// SIG // MBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVk +// SIG // bW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0 +// SIG // aW9uMSgwJgYDVQQDEx9NaWNyb3NvZnQgQ29kZSBTaWdu +// SIG // aW5nIFBDQSAyMDExMIICIjANBgkqhkiG9w0BAQEFAAOC +// SIG // Ag8AMIICCgKCAgEAq/D6chAcLq3YbqqCEE00uvK2WCGf +// SIG // Qhsqa+laUKq4BjgaBEm6f8MMHt03a8YS2AvwOMKZBrDI +// SIG // OdUBFDFC04kNeWSHfpRgJGyvnkmc6Whe0t+bU7IKLMOv +// SIG // 2akrrnoJr9eWWcpgGgXpZnboMlImEi/nqwhQz7NEt13Y +// SIG // xC4Ddato88tt8zpcoRb0RrrgOGSsbmQ1eKagYw8t00CT +// SIG // +OPeBw3VXHmlSSnnDb6gE3e+lD3v++MrWhAfTVYoonpy +// SIG // 4BI6t0le2O3tQ5GD2Xuye4Yb2T6xjF3oiU+EGvKhL1nk +// SIG // kDstrjNYxbc+/jLTswM9sbKvkjh+0p2ALPVOVpEhNSXD +// SIG // OW5kf1O6nA+tGSOEy/S6A4aN91/w0FK/jJSHvMAhdCVf +// SIG // GCi2zCcoOCWYOUo2z3yxkq4cI6epZuxhH2rhKEmdX4ji +// SIG // JV3TIUs+UsS1Vz8kA/DRelsv1SPjcF0PUUZ3s/gA4bys +// SIG // AoJf28AVs70b1FVL5zmhD+kjSbwYuER8ReTBw3J64HLn +// SIG // JN+/RpnF78IcV9uDjexNSTCnq47f7Fufr/zdsGbiwZeB +// SIG // e+3W7UvnSSmnEyimp31ngOaKYnhfsi+E11ecXL93KCjx +// SIG // 7W3DKI8sj0A3T8HhhUSJxAlMxdSlQy90lfdu+HggWCwT +// SIG // XWCVmj5PM4TasIgX3p5O9JawvEagbJjS4NaIjAsCAwEA +// SIG // AaOCAe0wggHpMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1Ud +// SIG // DgQWBBRIbmTlUAXTgqoXNzcitW2oynUClTAZBgkrBgEE +// SIG // AYI3FAIEDB4KAFMAdQBiAEMAQTALBgNVHQ8EBAMCAYYw +// SIG // DwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBRyLToC +// SIG // MZBDuRQFTuHqp8cx0SOJNDBaBgNVHR8EUzBRME+gTaBL +// SIG // hklodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpL2Ny +// SIG // bC9wcm9kdWN0cy9NaWNSb29DZXJBdXQyMDExXzIwMTFf +// SIG // MDNfMjIuY3JsMF4GCCsGAQUFBwEBBFIwUDBOBggrBgEF +// SIG // BQcwAoZCaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3Br +// SIG // aS9jZXJ0cy9NaWNSb29DZXJBdXQyMDExXzIwMTFfMDNf +// SIG // MjIuY3J0MIGfBgNVHSAEgZcwgZQwgZEGCSsGAQQBgjcu +// SIG // AzCBgzA/BggrBgEFBQcCARYzaHR0cDovL3d3dy5taWNy +// SIG // b3NvZnQuY29tL3BraW9wcy9kb2NzL3ByaW1hcnljcHMu +// SIG // aHRtMEAGCCsGAQUFBwICMDQeMiAdAEwAZQBnAGEAbABf +// SIG // AHAAbwBsAGkAYwB5AF8AcwB0AGEAdABlAG0AZQBuAHQA +// SIG // LiAdMA0GCSqGSIb3DQEBCwUAA4ICAQBn8oalmOBUeRou +// SIG // 09h0ZyKbC5YR4WOSmUKWfdJ5DJDBZV8uLD74w3LRbYP+ +// SIG // vj/oCso7v0epo/Np22O/IjWll11lhJB9i0ZQVdgMknzS +// SIG // Gksc8zxCi1LQsP1r4z4HLimb5j0bpdS1HXeUOeLpZMlE +// SIG // PXh6I/MTfaaQdION9MsmAkYqwooQu6SpBQyb7Wj6aC6V +// SIG // oCo/KmtYSWMfCWluWpiW5IP0wI/zRive/DvQvTXvbiWu +// SIG // 5a8n7dDd8w6vmSiXmE0OPQvyCInWH8MyGOLwxS3OW560 +// SIG // STkKxgrCxq2u5bLZ2xWIUUVYODJxJxp/sfQn+N4sOiBp +// SIG // mLJZiWhub6e3dMNABQamASooPoI/E01mC8CzTfXhj38c +// SIG // bxV9Rad25UAqZaPDXVJihsMdYzaXht/a8/jyFqGaJ+HN +// SIG // pZfQ7l1jQeNbB5yHPgZ3BtEGsXUfFL5hYbXw3MYbBL7f +// SIG // QccOKO7eZS/sl/ahXJbYANahRr1Z85elCUtIEJmAH9AA +// SIG // KcWxm6U/RXceNcbSoqKfenoi+kiVH6v7RyOA9Z74v2u3 +// SIG // S5fi63V4GuzqN5l5GEv/1rMjaHXmr/r8i+sLgOppO6/8 +// SIG // MO0ETI7f33VtY5E90Z1WTk+/gFcioXgRMiF670EKsT/7 +// SIG // qMykXcGhiJtXcVZOSEXAQsmbdlsKgEhr/Xmfwb1tbWrJ +// SIG // UnMTDXpQzTGCGfYwghnyAgEBMIGVMH4xCzAJBgNVBAYT +// SIG // AlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQH +// SIG // EwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29y +// SIG // cG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2Rl +// SIG // IFNpZ25pbmcgUENBIDIwMTECEzMAAAKNfkfDgn4FGioA +// SIG // AAAAAo0wDQYJYIZIAWUDBAIBBQCgga4wGQYJKoZIhvcN +// SIG // AQkDMQwGCisGAQQBgjcCAQQwHAYKKwYBBAGCNwIBCzEO +// SIG // MAwGCisGAQQBgjcCARUwLwYJKoZIhvcNAQkEMSIEIEhp +// SIG // rCziQU4IuN/UpdN1WZ8lu+b8VAfV7hu4H/l2/6YEMEIG +// SIG // CisGAQQBgjcCAQwxNDAyoBSAEgBNAGkAYwByAG8AcwBv +// SIG // AGYAdKEagBhodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20w +// SIG // DQYJKoZIhvcNAQEBBQAEggGAaOCjFpl1SPh7gqxkDj3r +// SIG // BTkqTrW/qLx/c3KI1VxDxf/r5z6xiPgxlLZ4Rexz+ln5 +// SIG // vbVf8n+62sbi0muePCSMuE5ihLOYmiTYLmyPHaA8zSEX +// SIG // Xr0ADyOUPV9JVezur8DqdmrwMAq1N/LUPcnggwhXCAzE +// SIG // BuQaZRYnNq63uODtaVPNfTXOAf8JY3bHVqj7j8twyyZK +// SIG // rzTuIM16MmcT8jqchfupCaam7nII0gZqx22h6y1JX75e +// SIG // vu7vgEbq+1+f9miG/AHvd4f1t1FpAv9ZopK2pRdVTum6 +// SIG // sS4qzfvCLWUDCDxx/K+lbwymBelganz57y7EIpquZoXm +// SIG // jnN5ZqvTnhkpBw4pEfw/cIP1zb1J+MGmXzk2SqEr2wFi +// SIG // S8DhG1eqdO3c+9G/rjtHrfh0H5m50G/Ihxd+g1p8a2y8 +// SIG // IBg/ItoII6tdiMcXZVCQLlwGAEVmpV1uLmkB2US+doz0 +// SIG // lhnr6SzpQpQp7XDf0XuAp7rOAW7ecJ3rQ5CWL1sIg5LL +// SIG // Kv4BrBP6oYIXADCCFvwGCisGAQQBgjcDAwExghbsMIIW +// SIG // 6AYJKoZIhvcNAQcCoIIW2TCCFtUCAQMxDzANBglghkgB +// SIG // ZQMEAgEFADCCAVEGCyqGSIb3DQEJEAEEoIIBQASCATww +// SIG // ggE4AgEBBgorBgEEAYRZCgMBMDEwDQYJYIZIAWUDBAIB +// SIG // BQAEIFJJ0NDJXfQkK1ZEtvO09LZGuwaEcyimOnaZ5MqP +// SIG // K9O9AgZiYZCL+nsYEzIwMjIwNDI1MTkxNzE4LjU0OVow +// SIG // BIACAfSggdCkgc0wgcoxCzAJBgNVBAYTAlVTMRMwEQYD +// SIG // VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25k +// SIG // MR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24x +// SIG // JTAjBgNVBAsTHE1pY3Jvc29mdCBBbWVyaWNhIE9wZXJh +// SIG // dGlvbnMxJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOkRE +// SIG // OEMtRTMzNy0yRkFFMSUwIwYDVQQDExxNaWNyb3NvZnQg +// SIG // VGltZS1TdGFtcCBTZXJ2aWNloIIRVzCCBwwwggT0oAMC +// SIG // AQICEzMAAAGcD6ZNYdKeSygAAQAAAZwwDQYJKoZIhvcN +// SIG // AQELBQAwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldh +// SIG // c2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV +// SIG // BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UE +// SIG // AxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAw +// SIG // HhcNMjExMjAyMTkwNTE5WhcNMjMwMjI4MTkwNTE5WjCB +// SIG // yjELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0 +// SIG // b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1p +// SIG // Y3Jvc29mdCBDb3Jwb3JhdGlvbjElMCMGA1UECxMcTWlj +// SIG // cm9zb2Z0IEFtZXJpY2EgT3BlcmF0aW9uczEmMCQGA1UE +// SIG // CxMdVGhhbGVzIFRTUyBFU046REQ4Qy1FMzM3LTJGQUUx +// SIG // JTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNl +// SIG // cnZpY2UwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIK +// SIG // AoICAQDbUioMGV1JFj+s612s02mKu23KPUNs71OjDeJG +// SIG // txkTF9rSWTiuA8XgYkAAi/5+2Ff7Ck7JcKQ9H/XD1OKw +// SIG // g1/bH3E1qO1z8XRy0PlpGhmyilgE7KsOvW8PIZCf243K +// SIG // dldgOrxrL8HKiQodOwStyT5lLWYpMsuT2fH8k8oihje4 +// SIG // TlpWiFPaCKLnFDaAB0Ccy6vIdtHjYB1Ie3iOZPisquL+ +// SIG // vNdCx7gOhB8iiTmTdsU8OSUpC8tBTeTIYPzmhaxQZd4m +// SIG // oNk6qeCJyi7fiW4fyXdHrZ3otmgxxa5pXz5pUUr+cEjV +// SIG // +cwIYBMkaY5kHM9c6dEGkgHn0ZDJvdt/54FOdSG61WwH +// SIG // h4+evUhwvXaB4LCMZIdCt5acOfNvtDjV3CHyFOp5AU/q +// SIG // gAwGftHU9brv4EUwcuteEAKH46NufE20l/WjlNUh7gAv +// SIG // t2zKMjO4zXRxCUTh/prBQwXJiUZeFSrEXiOfkuvSlBni +// SIG // yAYYZp5kOnaxfCKdGYjvr4QLA93vQJ6p2Ox3IHvOdCPa +// SIG // Cr8LsKVcFpyp8MEhhJTM+1LwqHJqFDF5O1Z9mjbYvm3R +// SIG // 9vPhkG+RDLKoTpr7mTgkaTljd9xvm94Obp8BD9Hk4mPi +// SIG // 51mtgLiuN8/6aZVESVZXtvSuNkD5DnIJQerIy5jaRKW/ +// SIG // W2rCe9ngNDJadS7R96GGRl7IIE37lwIDAQABo4IBNjCC +// SIG // ATIwHQYDVR0OBBYEFLtpCWdTXY5dtddkspy+oxjCA/qy +// SIG // MB8GA1UdIwQYMBaAFJ+nFV0AXmJdg/Tl0mWnG1M1Gely +// SIG // MF8GA1UdHwRYMFYwVKBSoFCGTmh0dHA6Ly93d3cubWlj +// SIG // cm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUy +// SIG // MFRpbWUtU3RhbXAlMjBQQ0ElMjAyMDEwKDEpLmNybDBs +// SIG // BggrBgEFBQcBAQRgMF4wXAYIKwYBBQUHMAKGUGh0dHA6 +// SIG // Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMv +// SIG // TWljcm9zb2Z0JTIwVGltZS1TdGFtcCUyMFBDQSUyMDIw +// SIG // MTAoMSkuY3J0MAwGA1UdEwEB/wQCMAAwEwYDVR0lBAww +// SIG // CgYIKwYBBQUHAwgwDQYJKoZIhvcNAQELBQADggIBAKcA +// SIG // KqYjGEczTWMs9z0m7Yo23sgqVF3LyK6gOMz7TCHAJN+F +// SIG // vbvZkQ53VkvrZUd1sE6a9ToGldcJnOmBc6iuhBlpvdN1 +// SIG // BLBRO8QSTD1433VTj4XCQd737wND1+eqKG3BdjrzbDks +// SIG // EwfG4v57PgrN/T7s7PkEjUGXfIgFQQkr8TQi+/HZZ9kR +// SIG // lNccgeACqlfb4uGPxn5sdhQPoxdMvmC3qG9DONJ5UsS9 +// SIG // KtO+bey+ohUTDa9LvEToc4Qzy5fuHj2H1JsmCaKG78nX +// SIG // pfWpwBLBxZYSpfml29onN8jcG7KD8nGSS/76PDlb2GMQ +// SIG // svv+Ra0JgL6FtGRGgYmHCpM6zVrf4V/a+SoHcC+tcdGY +// SIG // k2aKU5KOlv+fFE3n024V+z54tDAKR9z78rejdCBWqfvy +// SIG // 5cBUQ9c5+3unHD08BEp7qP2rgpoD856vNDgEwO77n7EW +// SIG // T76nl/IyrbK2kjbHLzUMphFpXKnV1fYWJI2+E/0LHvXF +// SIG // GGqF4OvMBRxbrJVn03T2Dy5db6s5TzJzSaQvCrXYqA4H +// SIG // KvstQWkqkpvBHTX8M09+/vyRbVXNxrPdeXw6oD2Q4Dks +// SIG // ykCFfn8N2j2LdixE9wG5iilv69dzsvHIN/g9A9+thkAQ +// SIG // CVb9DUSOTaMIGgsOqDYFjhT6ze9lkhHHGv/EEIkxj9l6 +// SIG // S4hqUQyWerFkaUWDXcnZMIIHcTCCBVmgAwIBAgITMwAA +// SIG // ABXF52ueAptJmQAAAAAAFTANBgkqhkiG9w0BAQsFADCB +// SIG // iDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0 +// SIG // b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1p +// SIG // Y3Jvc29mdCBDb3Jwb3JhdGlvbjEyMDAGA1UEAxMpTWlj +// SIG // cm9zb2Z0IFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5 +// SIG // IDIwMTAwHhcNMjEwOTMwMTgyMjI1WhcNMzAwOTMwMTgz +// SIG // MjI1WjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2Fz +// SIG // aGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UE +// SIG // ChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQD +// SIG // Ex1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDCC +// SIG // AiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAOTh +// SIG // pkzntHIhC3miy9ckeb0O1YLT/e6cBwfSqWxOdcjKNVf2 +// SIG // AX9sSuDivbk+F2Az/1xPx2b3lVNxWuJ+Slr+uDZnhUYj +// SIG // DLWNE893MsAQGOhgfWpSg0S3po5GawcU88V29YZQ3MFE +// SIG // yHFcUTE3oAo4bo3t1w/YJlN8OWECesSq/XJprx2rrPY2 +// SIG // vjUmZNqYO7oaezOtgFt+jBAcnVL+tuhiJdxqD89d9P6O +// SIG // U8/W7IVWTe/dvI2k45GPsjksUZzpcGkNyjYtcI4xyDUo +// SIG // veO0hyTD4MmPfrVUj9z6BVWYbWg7mka97aSueik3rMvr +// SIG // g0XnRm7KMtXAhjBcTyziYrLNueKNiOSWrAFKu75xqRdb +// SIG // Z2De+JKRHh09/SDPc31BmkZ1zcRfNN0Sidb9pSB9fvzZ +// SIG // nkXftnIv231fgLrbqn427DZM9ituqBJR6L8FA6PRc6ZN +// SIG // N3SUHDSCD/AQ8rdHGO2n6Jl8P0zbr17C89XYcz1DTsEz +// SIG // OUyOArxCaC4Q6oRRRuLRvWoYWmEBc8pnol7XKHYC4jMY +// SIG // ctenIPDC+hIK12NvDMk2ZItboKaDIV1fMHSRlJTYuVD5 +// SIG // C4lh8zYGNRiER9vcG9H9stQcxWv2XFJRXRLbJbqvUAV6 +// SIG // bMURHXLvjflSxIUXk8A8FdsaN8cIFRg/eKtFtvUeh17a +// SIG // j54WcmnGrnu3tz5q4i6tAgMBAAGjggHdMIIB2TASBgkr +// SIG // BgEEAYI3FQEEBQIDAQABMCMGCSsGAQQBgjcVAgQWBBQq +// SIG // p1L+ZMSavoKRPEY1Kc8Q/y8E7jAdBgNVHQ4EFgQUn6cV +// SIG // XQBeYl2D9OXSZacbUzUZ6XIwXAYDVR0gBFUwUzBRBgwr +// SIG // BgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0cDov +// SIG // L3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1Jl +// SIG // cG9zaXRvcnkuaHRtMBMGA1UdJQQMMAoGCCsGAQUFBwMI +// SIG // MBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +// SIG // DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQY +// SIG // MBaAFNX2VsuP6KJcYmjRPZSQW9fOmhjEMFYGA1UdHwRP +// SIG // ME0wS6BJoEeGRWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNv +// SIG // bS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dF8y +// SIG // MDEwLTA2LTIzLmNybDBaBggrBgEFBQcBAQROMEwwSgYI +// SIG // KwYBBQUHMAKGPmh0dHA6Ly93d3cubWljcm9zb2Z0LmNv +// SIG // bS9wa2kvY2VydHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYt +// SIG // MjMuY3J0MA0GCSqGSIb3DQEBCwUAA4ICAQCdVX38Kq3h +// SIG // LB9nATEkW+Geckv8qW/qXBS2Pk5HZHixBpOXPTEztTnX +// SIG // wnE2P9pkbHzQdTltuw8x5MKP+2zRoZQYIu7pZmc6U03d +// SIG // mLq2HnjYNi6cqYJWAAOwBb6J6Gngugnue99qb74py27Y +// SIG // P0h1AdkY3m2CDPVtI1TkeFN1JFe53Z/zjj3G82jfZfak +// SIG // Vqr3lbYoVSfQJL1AoL8ZthISEV09J+BAljis9/kpicO8 +// SIG // F7BUhUKz/AyeixmJ5/ALaoHCgRlCGVJ1ijbCHcNhcy4s +// SIG // a3tuPywJeBTpkbKpW99Jo3QMvOyRgNI95ko+ZjtPu4b6 +// SIG // MhrZlvSP9pEB9s7GdP32THJvEKt1MMU0sHrYUP4KWN1A +// SIG // PMdUbZ1jdEgssU5HLcEUBHG/ZPkkvnNtyo4JvbMBV0lU +// SIG // ZNlz138eW0QBjloZkWsNn6Qo3GcZKCS6OEuabvshVGtq +// SIG // RRFHqfG3rsjoiV5PndLQTHa1V1QJsWkBRH58oWFsc/4K +// SIG // u+xBZj1p/cvBQUl+fpO+y/g75LcVv7TOPqUxUYS8vwLB +// SIG // gqJ7Fx0ViY1w/ue10CgaiQuPNtq6TPmb/wrpNPgkNWcr +// SIG // 4A245oyZ1uEi6vAnQj0llOZ0dFtq0Z4+7X6gMTN9vMvp +// SIG // e784cETRkPHIqzqKOghif9lwY1NNje6CbaUFEMFxBmoQ +// SIG // tB1VM1izoXBm8qGCAs4wggI3AgEBMIH4oYHQpIHNMIHK +// SIG // MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv +// SIG // bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWlj +// SIG // cm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxNaWNy +// SIG // b3NvZnQgQW1lcmljYSBPcGVyYXRpb25zMSYwJAYDVQQL +// SIG // Ex1UaGFsZXMgVFNTIEVTTjpERDhDLUUzMzctMkZBRTEl +// SIG // MCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAgU2Vy +// SIG // dmljZaIjCgEBMAcGBSsOAwIaAxUAzdlp6t3ws/bnErbm +// SIG // 9c0M+9dvU0CggYMwgYCkfjB8MQswCQYDVQQGEwJVUzET +// SIG // MBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVk +// SIG // bW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0 +// SIG // aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFt +// SIG // cCBQQ0EgMjAxMDANBgkqhkiG9w0BAQUFAAIFAOYRVOAw +// SIG // IhgPMjAyMjA0MjYwMTEyMDBaGA8yMDIyMDQyNzAxMTIw +// SIG // MFowdzA9BgorBgEEAYRZCgQBMS8wLTAKAgUA5hFU4AIB +// SIG // ADAKAgEAAgITSAIB/zAHAgEAAgIRUjAKAgUA5hKmYAIB +// SIG // ADA2BgorBgEEAYRZCgQCMSgwJjAMBgorBgEEAYRZCgMC +// SIG // oAowCAIBAAIDB6EgoQowCAIBAAIDAYagMA0GCSqGSIb3 +// SIG // DQEBBQUAA4GBADgVbFCwnF2yj5NTpTayy+XeR+dPrPl5 +// SIG // 12DqhiA9y7cEHwVIHAfYQkgZ1UD0uV8AgxJ9oPA1/5Bw +// SIG // 89O7K7mOpj+bSuDHcruAWwJcUVNT4g1FcUjvRA2SikS9 +// SIG // QTdHL7HcCnA6rcXEsD9gqgqaB32jFKpCQLH5qwItoaJl +// SIG // aRYni0laMYIEDTCCBAkCAQEwgZMwfDELMAkGA1UEBhMC +// SIG // VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcT +// SIG // B1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jw +// SIG // b3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUt +// SIG // U3RhbXAgUENBIDIwMTACEzMAAAGcD6ZNYdKeSygAAQAA +// SIG // AZwwDQYJYIZIAWUDBAIBBQCgggFKMBoGCSqGSIb3DQEJ +// SIG // AzENBgsqhkiG9w0BCRABBDAvBgkqhkiG9w0BCQQxIgQg +// SIG // HX2cxgpG6dnRsP6iEOEiEMsPP1TvUWdgFxlXQc6gCxww +// SIG // gfoGCyqGSIb3DQEJEAIvMYHqMIHnMIHkMIG9BCA3D0WF +// SIG // II0syjoRd/XeEIG0WUIKzzuy6P6hORrb0nqmvDCBmDCB +// SIG // gKR+MHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNo +// SIG // aW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQK +// SIG // ExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMT +// SIG // HU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwAhMz +// SIG // AAABnA+mTWHSnksoAAEAAAGcMCIEINcVaStvj3CXQ5RB +// SIG // MGd0e4MVoi1rC25eETTzU195RDkkMA0GCSqGSIb3DQEB +// SIG // CwUABIICAEbbml544bbIKbZ50rjN8+Ys0aS9C+azZqJm +// SIG // KXohrikJVcV89O4U6h/zCAXh1pBGo9k+X549sWcJLBvv +// SIG // LINOvhQhy39Oj18rw/u4AUFJ8Pk1BuLVLW+zc55+Ru2q +// SIG // ETbMpiHevc9e58DHSySpr/rS8ylwcBJVtO+AzuQsVJZn +// SIG // yGjfVjWQd858IVAEkJWZLZwDrxJRsdKPY1u6fWmPOp7O +// SIG // k/LSoKpN3q6H7fobXIFCpxXWFGePlZ6LF4Y+UExFu/2U +// SIG // A1ivEaHNgqrIh6USzkblgeGT6gtc9V/MTybgM3GfbDVM +// SIG // eE1zSeu41B7bWVbBQ7Rou6OkszVxBBySpLXWhXdc+wuC +// SIG // E+LV1//UfS2QD5cz0gQvc89M/UW7BOrZrA0IFOWimWnc +// SIG // q4Ci64lfV2Eoa37kCT5cjIfKqQpJZGjwyE/yJHcyqaLw +// SIG // 4u/PMgpkjVlgGyUhOGw1e9R/DMi01p6h2C8PbMsvy2fi +// SIG // t+PttlTg5A7oU2DVuQ+M67Dx1q+AuoHfu/wwpnjlfsc4 +// SIG // AZFVd7KknRcDDshY+oJ1orZHVxxwjG9mIwnDlSASz1u3 +// SIG // 6xXzUzVNoFzmTE6bDBOFpjDOA+IezkDST08BsJ2Af50d +// SIG // /Y1CMxoRvlSNneVXB28jlW3VDqS/bS3/4ovUCTpaYk9T +// SIG // 01X/SqSkiqrT+yMncZTdvq8ET8KFdU5q +// SIG // End signature block diff --git a/CS_Todo/bin/Debug/net6.0/dotnet.timezones.blat b/CS_Todo/bin/Debug/net6.0/dotnet.timezones.blat new file mode 100755 index 00000000..aaf85d82 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/dotnet.timezones.blat differ diff --git a/CS_Todo/bin/Debug/net6.0/dotnet.wasm b/CS_Todo/bin/Debug/net6.0/dotnet.wasm new file mode 100755 index 00000000..07a560f1 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/dotnet.wasm differ diff --git a/CS_Todo/bin/Debug/net6.0/icudt.dat b/CS_Todo/bin/Debug/net6.0/icudt.dat new file mode 100755 index 00000000..7281a276 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/icudt.dat differ diff --git a/CS_Todo/bin/Debug/net6.0/icudt_CJK.dat b/CS_Todo/bin/Debug/net6.0/icudt_CJK.dat new file mode 100755 index 00000000..a4ef6d70 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/icudt_CJK.dat differ diff --git a/CS_Todo/bin/Debug/net6.0/icudt_EFIGS.dat b/CS_Todo/bin/Debug/net6.0/icudt_EFIGS.dat new file mode 100755 index 00000000..4b39b3fa Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/icudt_EFIGS.dat differ diff --git a/CS_Todo/bin/Debug/net6.0/icudt_no_CJK.dat b/CS_Todo/bin/Debug/net6.0/icudt_no_CJK.dat new file mode 100755 index 00000000..bab52e7a Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/icudt_no_CJK.dat differ diff --git a/CS_Todo/bin/Debug/net6.0/mscorlib.dll b/CS_Todo/bin/Debug/net6.0/mscorlib.dll new file mode 100755 index 00000000..162158d1 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/mscorlib.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/netstandard.dll b/CS_Todo/bin/Debug/net6.0/netstandard.dll new file mode 100755 index 00000000..873ef9a2 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/netstandard.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/CS_Todo.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/CS_Todo.dll new file mode 100644 index 00000000..f7265ec6 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/CS_Todo.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/CS_Todo.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/CS_Todo.dll.gz new file mode 100644 index 00000000..151689e1 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/CS_Todo.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/CS_Todo.pdb b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/CS_Todo.pdb new file mode 100644 index 00000000..42bb32c1 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/CS_Todo.pdb differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/CS_Todo.pdb.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/CS_Todo.pdb.gz new file mode 100644 index 00000000..f1bdcf0b Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/CS_Todo.pdb.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll new file mode 100755 index 00000000..2d1d1aa9 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll.gz new file mode 100644 index 00000000..a34aeee0 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll new file mode 100755 index 00000000..ccab853e Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll.gz new file mode 100644 index 00000000..cb620a87 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll new file mode 100755 index 00000000..6ddeb7d3 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll.gz new file mode 100644 index 00000000..b02dbc68 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll new file mode 100755 index 00000000..520fece8 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz new file mode 100644 index 00000000..84667116 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll new file mode 100755 index 00000000..4de3ceef Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll.gz new file mode 100644 index 00000000..1d89693b Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll new file mode 100755 index 00000000..200aa169 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll.gz new file mode 100644 index 00000000..bd9420d3 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.CSharp.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.CSharp.dll new file mode 100755 index 00000000..40125d10 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.CSharp.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.CSharp.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.CSharp.dll.gz new file mode 100644 index 00000000..26f907f6 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.CSharp.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll new file mode 100755 index 00000000..9a24516f Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz new file mode 100644 index 00000000..3d7e29ea Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll new file mode 100755 index 00000000..845cab83 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll.gz new file mode 100644 index 00000000..93a73c35 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll new file mode 100755 index 00000000..160814d3 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz new file mode 100644 index 00000000..bbf68757 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll new file mode 100755 index 00000000..1c9ba240 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll.gz new file mode 100644 index 00000000..6ecae334 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll new file mode 100755 index 00000000..4c0a93b3 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll.gz new file mode 100644 index 00000000..8a8d8a2d Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100755 index 00000000..b4ee93da Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz new file mode 100644 index 00000000..1dcc1b3e Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll new file mode 100755 index 00000000..97525f7e Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll.gz new file mode 100644 index 00000000..794f338b Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll new file mode 100755 index 00000000..d1045b65 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz new file mode 100644 index 00000000..433c1484 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll new file mode 100755 index 00000000..e712dbe6 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz new file mode 100644 index 00000000..33d6c66d Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll new file mode 100755 index 00000000..61c4e0c5 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz new file mode 100644 index 00000000..66d40a4d Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100755 index 00000000..a42ea834 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz new file mode 100644 index 00000000..fce16d46 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll new file mode 100755 index 00000000..9e2d7f94 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll.gz new file mode 100644 index 00000000..20e2a77f Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Options.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Options.dll new file mode 100755 index 00000000..604b6027 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Options.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Options.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Options.dll.gz new file mode 100644 index 00000000..b47daccd Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Options.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll new file mode 100755 index 00000000..1b2c43af Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll.gz new file mode 100644 index 00000000..1ae18e67 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll new file mode 100755 index 00000000..8f7cb0ee Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll.gz new file mode 100644 index 00000000..a6e10595 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.dll new file mode 100755 index 00000000..5becf97c Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.dll.gz new file mode 100644 index 00000000..a0c1937c Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll new file mode 100755 index 00000000..7fab9184 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll.gz new file mode 100644 index 00000000..7543e5e7 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.dll new file mode 100755 index 00000000..b4b60b63 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.dll.gz new file mode 100644 index 00000000..9e7d2193 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll new file mode 100755 index 00000000..b01a303c Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll.gz new file mode 100644 index 00000000..67c98527 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Registry.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Registry.dll new file mode 100755 index 00000000..59e12490 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Registry.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Registry.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Registry.dll.gz new file mode 100644 index 00000000..6900906a Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Registry.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.AppContext.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.AppContext.dll new file mode 100755 index 00000000..4dfdfaf6 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.AppContext.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.AppContext.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.AppContext.dll.gz new file mode 100644 index 00000000..f2a0e7ff Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.AppContext.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Buffers.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Buffers.dll new file mode 100755 index 00000000..0705314b Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Buffers.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Buffers.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Buffers.dll.gz new file mode 100644 index 00000000..7b9d9756 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Buffers.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Concurrent.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Concurrent.dll new file mode 100755 index 00000000..94cbbc5e Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Concurrent.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Concurrent.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Concurrent.dll.gz new file mode 100644 index 00000000..a3849d9a Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Concurrent.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Immutable.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Immutable.dll new file mode 100755 index 00000000..6b4e83b1 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Immutable.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Immutable.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Immutable.dll.gz new file mode 100644 index 00000000..147b8e5d Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Immutable.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.NonGeneric.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.NonGeneric.dll new file mode 100755 index 00000000..5f9da539 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.NonGeneric.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.NonGeneric.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.NonGeneric.dll.gz new file mode 100644 index 00000000..1a1596bc Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.NonGeneric.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Specialized.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Specialized.dll new file mode 100755 index 00000000..acf3437f Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Specialized.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Specialized.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Specialized.dll.gz new file mode 100644 index 00000000..54f8ea8b Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Specialized.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.dll new file mode 100755 index 00000000..9529c1b7 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.dll.gz new file mode 100644 index 00000000..6e02ae52 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Annotations.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Annotations.dll new file mode 100755 index 00000000..c724a4e6 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Annotations.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Annotations.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Annotations.dll.gz new file mode 100644 index 00000000..4d1a45e6 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Annotations.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll new file mode 100755 index 00000000..8c0e572f Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll.gz new file mode 100644 index 00000000..a7aa54c9 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll new file mode 100755 index 00000000..c1a68177 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll.gz new file mode 100644 index 00000000..0ecc8689 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Primitives.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Primitives.dll new file mode 100755 index 00000000..afa5a0a9 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Primitives.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Primitives.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Primitives.dll.gz new file mode 100644 index 00000000..32df2461 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Primitives.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll new file mode 100755 index 00000000..086d55a1 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll.gz new file mode 100644 index 00000000..a8b50629 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.dll new file mode 100755 index 00000000..66bd45f6 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.dll.gz new file mode 100644 index 00000000..61de2042 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Configuration.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Configuration.dll new file mode 100755 index 00000000..a4f53793 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Configuration.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Configuration.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Configuration.dll.gz new file mode 100644 index 00000000..7657201a Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Configuration.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Console.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Console.dll new file mode 100755 index 00000000..4d8d9de8 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Console.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Console.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Console.dll.gz new file mode 100644 index 00000000..614af237 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Console.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Core.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Core.dll new file mode 100755 index 00000000..df8460ab Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Core.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Core.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Core.dll.gz new file mode 100644 index 00000000..c6eed2f5 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Core.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.Common.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.Common.dll new file mode 100755 index 00000000..b08accee Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.Common.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.Common.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.Common.dll.gz new file mode 100644 index 00000000..51346ba1 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.Common.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.DataSetExtensions.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.DataSetExtensions.dll new file mode 100755 index 00000000..a74d4798 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.DataSetExtensions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.DataSetExtensions.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.DataSetExtensions.dll.gz new file mode 100644 index 00000000..9003413c Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.DataSetExtensions.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.dll new file mode 100755 index 00000000..3fc33343 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.dll.gz new file mode 100644 index 00000000..9ca80932 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Contracts.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Contracts.dll new file mode 100755 index 00000000..6d111bfd Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Contracts.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Contracts.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Contracts.dll.gz new file mode 100644 index 00000000..acb9ab28 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Contracts.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Debug.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Debug.dll new file mode 100755 index 00000000..2af45f9f Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Debug.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Debug.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Debug.dll.gz new file mode 100644 index 00000000..4bda5dda Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Debug.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll new file mode 100755 index 00000000..c0173764 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll.gz new file mode 100644 index 00000000..46104544 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll new file mode 100755 index 00000000..32193ef1 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll.gz new file mode 100644 index 00000000..657900ce Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Process.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Process.dll new file mode 100755 index 00000000..6fac1f54 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Process.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Process.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Process.dll.gz new file mode 100644 index 00000000..77a4aade Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Process.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll new file mode 100755 index 00000000..1ce30c80 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll.gz new file mode 100644 index 00000000..a4b5a11c Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll new file mode 100755 index 00000000..b446d742 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll.gz new file mode 100644 index 00000000..9f512e8c Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tools.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tools.dll new file mode 100755 index 00000000..b9904507 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tools.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tools.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tools.dll.gz new file mode 100644 index 00000000..cb4a716b Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tools.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll new file mode 100755 index 00000000..0e62c27e Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll.gz new file mode 100644 index 00000000..02283acf Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tracing.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tracing.dll new file mode 100755 index 00000000..979fb1d0 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tracing.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tracing.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tracing.dll.gz new file mode 100644 index 00000000..ead93ad8 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tracing.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.Primitives.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.Primitives.dll new file mode 100755 index 00000000..f2e8ec09 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.Primitives.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.Primitives.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.Primitives.dll.gz new file mode 100644 index 00000000..222ce60e Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.Primitives.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.dll new file mode 100755 index 00000000..6cba180d Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.dll.gz new file mode 100644 index 00000000..4fe68f05 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Dynamic.Runtime.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Dynamic.Runtime.dll new file mode 100755 index 00000000..e64f6d39 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Dynamic.Runtime.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Dynamic.Runtime.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Dynamic.Runtime.dll.gz new file mode 100644 index 00000000..43b4c6e9 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Dynamic.Runtime.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Formats.Asn1.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Formats.Asn1.dll new file mode 100755 index 00000000..f2ce8bdc Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Formats.Asn1.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Formats.Asn1.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Formats.Asn1.dll.gz new file mode 100644 index 00000000..e2174915 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Formats.Asn1.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Calendars.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Calendars.dll new file mode 100755 index 00000000..9f9cf207 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Calendars.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Calendars.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Calendars.dll.gz new file mode 100644 index 00000000..c3ec1eb8 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Calendars.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Extensions.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Extensions.dll new file mode 100755 index 00000000..be1ef2ee Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Extensions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Extensions.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Extensions.dll.gz new file mode 100644 index 00000000..86c838a2 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Extensions.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.dll new file mode 100755 index 00000000..1c619543 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.dll.gz new file mode 100644 index 00000000..c2ed6cee Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.Brotli.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.Brotli.dll new file mode 100755 index 00000000..683da1ef Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.Brotli.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.Brotli.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.Brotli.dll.gz new file mode 100644 index 00000000..b1f0d4cc Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.Brotli.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll new file mode 100755 index 00000000..8dded155 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll.gz new file mode 100644 index 00000000..3b6fadf5 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll new file mode 100755 index 00000000..f04830e2 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll.gz new file mode 100644 index 00000000..fc181ab8 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.dll new file mode 100755 index 00000000..fd8050bb Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.dll.gz new file mode 100644 index 00000000..579153f1 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll new file mode 100755 index 00000000..11631493 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll.gz new file mode 100644 index 00000000..1c9e48e4 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll new file mode 100755 index 00000000..d999e811 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll.gz new file mode 100644 index 00000000..dae6a40f Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll new file mode 100755 index 00000000..5b0c077b Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll.gz new file mode 100644 index 00000000..93f4b32b Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll new file mode 100755 index 00000000..1bcac7b7 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll.gz new file mode 100644 index 00000000..0649514c Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.dll new file mode 100755 index 00000000..f784b9b3 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.dll.gz new file mode 100644 index 00000000..b76d9bc9 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.IsolatedStorage.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.IsolatedStorage.dll new file mode 100755 index 00000000..ea373a59 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.IsolatedStorage.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.IsolatedStorage.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.IsolatedStorage.dll.gz new file mode 100644 index 00000000..c0ac1000 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.IsolatedStorage.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll new file mode 100755 index 00000000..d3cfdf94 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll.gz new file mode 100644 index 00000000..2bbf71ea Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipelines.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipelines.dll new file mode 100755 index 00000000..8ee4dfdd Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipelines.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipelines.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipelines.dll.gz new file mode 100644 index 00000000..ed09d802 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipelines.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll new file mode 100755 index 00000000..e9427b31 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll.gz new file mode 100644 index 00000000..896f78ce Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.dll new file mode 100755 index 00000000..c93057b8 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.dll.gz new file mode 100644 index 00000000..5e22b114 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll new file mode 100755 index 00000000..384f4c01 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll.gz new file mode 100644 index 00000000..0770050a Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.dll new file mode 100755 index 00000000..0ae6e386 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.dll.gz new file mode 100644 index 00000000..0f5679db Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Expressions.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Expressions.dll new file mode 100755 index 00000000..6ca64c8f Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Expressions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Expressions.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Expressions.dll.gz new file mode 100644 index 00000000..7c5fd030 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Expressions.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Parallel.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Parallel.dll new file mode 100755 index 00000000..f82c11ea Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Parallel.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Parallel.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Parallel.dll.gz new file mode 100644 index 00000000..789a07b3 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Parallel.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Queryable.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Queryable.dll new file mode 100755 index 00000000..a27494c5 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Queryable.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Queryable.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Queryable.dll.gz new file mode 100644 index 00000000..0bcf3008 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Queryable.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.dll new file mode 100755 index 00000000..715294e3 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.dll.gz new file mode 100644 index 00000000..9e5c79e6 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Memory.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Memory.dll new file mode 100755 index 00000000..dff7c3c8 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Memory.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Memory.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Memory.dll.gz new file mode 100644 index 00000000..33aa9d52 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Memory.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.Json.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.Json.dll new file mode 100755 index 00000000..f32a9103 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.Json.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.Json.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.Json.dll.gz new file mode 100644 index 00000000..95be353c Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.Json.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.dll new file mode 100755 index 00000000..4265f2e3 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.dll.gz new file mode 100644 index 00000000..ec56c3fc Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.HttpListener.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.HttpListener.dll new file mode 100755 index 00000000..06d0985a Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.HttpListener.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.HttpListener.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.HttpListener.dll.gz new file mode 100644 index 00000000..2bb81363 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.HttpListener.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Mail.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Mail.dll new file mode 100755 index 00000000..b63a065a Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Mail.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Mail.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Mail.dll.gz new file mode 100644 index 00000000..1dfbfdc4 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Mail.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.NameResolution.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.NameResolution.dll new file mode 100755 index 00000000..526eb2a2 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.NameResolution.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.NameResolution.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.NameResolution.dll.gz new file mode 100644 index 00000000..67f9870e Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.NameResolution.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.NetworkInformation.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.NetworkInformation.dll new file mode 100755 index 00000000..40b4b322 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.NetworkInformation.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.NetworkInformation.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.NetworkInformation.dll.gz new file mode 100644 index 00000000..1faf6ecc Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.NetworkInformation.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Ping.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Ping.dll new file mode 100755 index 00000000..29d7df5e Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Ping.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Ping.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Ping.dll.gz new file mode 100644 index 00000000..880df81f Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Ping.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Primitives.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Primitives.dll new file mode 100755 index 00000000..a54232f6 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Primitives.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Primitives.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Primitives.dll.gz new file mode 100644 index 00000000..c1c48ec9 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Primitives.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Quic.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Quic.dll new file mode 100755 index 00000000..f1b917fb Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Quic.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Quic.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Quic.dll.gz new file mode 100644 index 00000000..26cb4f2b Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Quic.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Requests.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Requests.dll new file mode 100755 index 00000000..df1ff401 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Requests.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Requests.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Requests.dll.gz new file mode 100644 index 00000000..72d7670c Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Requests.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Security.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Security.dll new file mode 100755 index 00000000..06ee3d73 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Security.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Security.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Security.dll.gz new file mode 100644 index 00000000..2cf1d498 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Security.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.ServicePoint.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.ServicePoint.dll new file mode 100755 index 00000000..c47f3c40 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.ServicePoint.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.ServicePoint.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.ServicePoint.dll.gz new file mode 100644 index 00000000..323b2ff6 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.ServicePoint.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Sockets.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Sockets.dll new file mode 100755 index 00000000..da058b49 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Sockets.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Sockets.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Sockets.dll.gz new file mode 100644 index 00000000..41a88f17 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Sockets.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebClient.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebClient.dll new file mode 100755 index 00000000..0b1f9a08 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebClient.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebClient.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebClient.dll.gz new file mode 100644 index 00000000..098fea16 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebClient.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll new file mode 100755 index 00000000..db058066 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll.gz new file mode 100644 index 00000000..ebb907d1 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebProxy.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebProxy.dll new file mode 100755 index 00000000..57bf252a Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebProxy.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebProxy.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebProxy.dll.gz new file mode 100644 index 00000000..2b5db2a5 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebProxy.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.Client.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.Client.dll new file mode 100755 index 00000000..38d33aaf Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.Client.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.Client.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.Client.dll.gz new file mode 100644 index 00000000..f7b1c643 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.Client.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.dll new file mode 100755 index 00000000..311578ea Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.dll.gz new file mode 100644 index 00000000..d60e62ce Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.dll new file mode 100755 index 00000000..3d939f7a Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.dll.gz new file mode 100644 index 00000000..57f0517a Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.Vectors.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.Vectors.dll new file mode 100755 index 00000000..56c995e2 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.Vectors.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.Vectors.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.Vectors.dll.gz new file mode 100644 index 00000000..82206e8f Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.Vectors.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.dll new file mode 100755 index 00000000..eb57a751 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.dll.gz new file mode 100644 index 00000000..bf8cb6b9 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ObjectModel.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ObjectModel.dll new file mode 100755 index 00000000..67780c7f Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ObjectModel.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ObjectModel.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ObjectModel.dll.gz new file mode 100644 index 00000000..bdca46c8 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ObjectModel.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.CoreLib.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.CoreLib.dll new file mode 100755 index 00000000..ad52c81b Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.CoreLib.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.CoreLib.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.CoreLib.dll.gz new file mode 100644 index 00000000..9e37bea7 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.CoreLib.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.DataContractSerialization.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.DataContractSerialization.dll new file mode 100755 index 00000000..a4d8d18f Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.DataContractSerialization.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.DataContractSerialization.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.DataContractSerialization.dll.gz new file mode 100644 index 00000000..b7234d17 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.DataContractSerialization.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Runtime.InteropServices.JavaScript.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Runtime.InteropServices.JavaScript.dll new file mode 100755 index 00000000..c2268b22 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Runtime.InteropServices.JavaScript.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz new file mode 100644 index 00000000..0b0bb4e0 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Uri.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Uri.dll new file mode 100755 index 00000000..8925df94 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Uri.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Uri.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Uri.dll.gz new file mode 100644 index 00000000..8f515fe0 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Uri.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.Linq.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.Linq.dll new file mode 100755 index 00000000..a120a105 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.Linq.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.Linq.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.Linq.dll.gz new file mode 100644 index 00000000..73608dc4 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.Linq.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.dll new file mode 100755 index 00000000..4f45af12 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.dll.gz new file mode 100644 index 00000000..9b7b7fa5 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll new file mode 100755 index 00000000..8811dc05 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll.gz new file mode 100644 index 00000000..466c9c13 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll new file mode 100755 index 00000000..8c13ad83 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll.gz new file mode 100644 index 00000000..c54dd22d Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll new file mode 100755 index 00000000..0cbf7719 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll.gz new file mode 100644 index 00000000..27e1bdbb Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.dll new file mode 100755 index 00000000..0deeaa78 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.dll.gz new file mode 100644 index 00000000..ffa4048e Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Extensions.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Extensions.dll new file mode 100755 index 00000000..9495e4c3 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Extensions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Extensions.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Extensions.dll.gz new file mode 100644 index 00000000..e58e9c2d Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Extensions.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Metadata.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Metadata.dll new file mode 100755 index 00000000..d2e1ecde Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Metadata.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Metadata.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Metadata.dll.gz new file mode 100644 index 00000000..d64a6ae4 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Metadata.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Primitives.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Primitives.dll new file mode 100755 index 00000000..55d17cf2 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Primitives.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Primitives.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Primitives.dll.gz new file mode 100644 index 00000000..55343208 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Primitives.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll new file mode 100755 index 00000000..50c39743 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll.gz new file mode 100644 index 00000000..673c86e8 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.dll new file mode 100755 index 00000000..e6d36db1 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.dll.gz new file mode 100644 index 00000000..d4e43045 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Reader.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Reader.dll new file mode 100755 index 00000000..d1fab422 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Reader.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Reader.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Reader.dll.gz new file mode 100644 index 00000000..1b320811 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Reader.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.ResourceManager.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.ResourceManager.dll new file mode 100755 index 00000000..a718fd32 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.ResourceManager.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.ResourceManager.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.ResourceManager.dll.gz new file mode 100644 index 00000000..52907c33 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.ResourceManager.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Writer.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Writer.dll new file mode 100755 index 00000000..1b492cb2 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Writer.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Writer.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Writer.dll.gz new file mode 100644 index 00000000..b5f87b49 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Writer.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll new file mode 100755 index 00000000..09c3366d Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll.gz new file mode 100644 index 00000000..dc9a28c4 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll new file mode 100755 index 00000000..85eeb968 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll.gz new file mode 100644 index 00000000..d61f1524 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Extensions.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Extensions.dll new file mode 100755 index 00000000..a35ead04 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Extensions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Extensions.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Extensions.dll.gz new file mode 100644 index 00000000..a1940a2a Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Extensions.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Handles.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Handles.dll new file mode 100755 index 00000000..94670025 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Handles.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Handles.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Handles.dll.gz new file mode 100644 index 00000000..e50cd81f Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Handles.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100755 index 00000000..6598801d Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz new file mode 100644 index 00000000..da8a0485 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.dll new file mode 100755 index 00000000..a9dc580c Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.dll.gz new file mode 100644 index 00000000..649c8733 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Intrinsics.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Intrinsics.dll new file mode 100755 index 00000000..220fd3dc Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Intrinsics.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Intrinsics.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Intrinsics.dll.gz new file mode 100644 index 00000000..733ecd61 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Intrinsics.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Loader.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Loader.dll new file mode 100755 index 00000000..43baf4b7 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Loader.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Loader.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Loader.dll.gz new file mode 100644 index 00000000..9d3bdf87 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Loader.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Numerics.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Numerics.dll new file mode 100755 index 00000000..10e4b4d0 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Numerics.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Numerics.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Numerics.dll.gz new file mode 100644 index 00000000..5c35fac9 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Numerics.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll new file mode 100755 index 00000000..0dac79c0 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll.gz new file mode 100644 index 00000000..5dafb683 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll new file mode 100755 index 00000000..94462a36 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll.gz new file mode 100644 index 00000000..ad5878b1 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll new file mode 100755 index 00000000..9868ae95 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll.gz new file mode 100644 index 00000000..5c16bebd Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll new file mode 100755 index 00000000..eae3e238 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll.gz new file mode 100644 index 00000000..8cfbe95f Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.dll new file mode 100755 index 00000000..842d9bc3 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.dll.gz new file mode 100644 index 00000000..0aa6b02b Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.dll new file mode 100755 index 00000000..17eb2fdf Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.dll.gz new file mode 100644 index 00000000..2a9938c9 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.AccessControl.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.AccessControl.dll new file mode 100755 index 00000000..e0e77ae5 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.AccessControl.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.AccessControl.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.AccessControl.dll.gz new file mode 100644 index 00000000..050b3833 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.AccessControl.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Claims.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Claims.dll new file mode 100755 index 00000000..d13ac0c1 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Claims.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Claims.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Claims.dll.gz new file mode 100644 index 00000000..95421c7f Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Claims.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll new file mode 100755 index 00000000..2d14a221 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll.gz new file mode 100644 index 00000000..ac0fcdd3 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll new file mode 100755 index 00000000..96428311 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll.gz new file mode 100644 index 00000000..781a9e1c Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll new file mode 100755 index 00000000..c1a9ad1e Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll.gz new file mode 100644 index 00000000..6d440099 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll new file mode 100755 index 00000000..879eab2a Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll.gz new file mode 100644 index 00000000..5a8d5c65 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll new file mode 100755 index 00000000..6ec266d6 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll.gz new file mode 100644 index 00000000..512b19b1 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll new file mode 100755 index 00000000..481fa8a0 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll.gz new file mode 100644 index 00000000..9b92033e Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll new file mode 100755 index 00000000..5bfa75a7 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll.gz new file mode 100644 index 00000000..c5e373e5 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.Windows.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.Windows.dll new file mode 100755 index 00000000..18321ae0 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.Windows.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.Windows.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.Windows.dll.gz new file mode 100644 index 00000000..f7923e89 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.Windows.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.dll new file mode 100755 index 00000000..056180b3 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.dll.gz new file mode 100644 index 00000000..81846281 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.SecureString.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.SecureString.dll new file mode 100755 index 00000000..e0b3d355 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.SecureString.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.SecureString.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.SecureString.dll.gz new file mode 100644 index 00000000..847b6b9d Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.SecureString.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.dll new file mode 100755 index 00000000..571678da Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.dll.gz new file mode 100644 index 00000000..10dfc50c Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ServiceModel.Web.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ServiceModel.Web.dll new file mode 100755 index 00000000..0c6ee7d7 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ServiceModel.Web.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ServiceModel.Web.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ServiceModel.Web.dll.gz new file mode 100644 index 00000000..e4bbaa2b Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ServiceModel.Web.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ServiceProcess.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ServiceProcess.dll new file mode 100755 index 00000000..721bbf16 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ServiceProcess.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ServiceProcess.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ServiceProcess.dll.gz new file mode 100644 index 00000000..d62ff697 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ServiceProcess.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll new file mode 100755 index 00000000..923c6b17 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll.gz new file mode 100644 index 00000000..05e417a5 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll new file mode 100755 index 00000000..af3008a0 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll.gz new file mode 100644 index 00000000..8079d9cc Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.dll new file mode 100755 index 00000000..cb717363 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.dll.gz new file mode 100644 index 00000000..7a841cc8 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encodings.Web.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encodings.Web.dll new file mode 100755 index 00000000..6391c135 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encodings.Web.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encodings.Web.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encodings.Web.dll.gz new file mode 100644 index 00000000..682138bd Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encodings.Web.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Json.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Json.dll new file mode 100755 index 00000000..e792b740 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Json.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Json.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Json.dll.gz new file mode 100644 index 00000000..3681bdc7 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Json.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.RegularExpressions.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.RegularExpressions.dll new file mode 100755 index 00000000..c77e944d Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.RegularExpressions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.RegularExpressions.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.RegularExpressions.dll.gz new file mode 100644 index 00000000..970c6315 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.RegularExpressions.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Channels.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Channels.dll new file mode 100755 index 00000000..1db84052 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Channels.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Channels.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Channels.dll.gz new file mode 100644 index 00000000..8238273e Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Channels.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Overlapped.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Overlapped.dll new file mode 100755 index 00000000..1ddf4946 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Overlapped.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Overlapped.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Overlapped.dll.gz new file mode 100644 index 00000000..43a74326 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Overlapped.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll new file mode 100755 index 00000000..fe9050d2 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll.gz new file mode 100644 index 00000000..fe929210 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll new file mode 100755 index 00000000..d34c1438 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll.gz new file mode 100644 index 00000000..4a598c67 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll new file mode 100755 index 00000000..d0d07af1 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll.gz new file mode 100644 index 00000000..06aacb1a Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.dll new file mode 100755 index 00000000..1b654922 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.dll.gz new file mode 100644 index 00000000..9260231d Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Thread.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Thread.dll new file mode 100755 index 00000000..86723e84 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Thread.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Thread.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Thread.dll.gz new file mode 100644 index 00000000..41f9c5ec Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Thread.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.ThreadPool.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.ThreadPool.dll new file mode 100755 index 00000000..3b377a8c Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.ThreadPool.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.ThreadPool.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.ThreadPool.dll.gz new file mode 100644 index 00000000..a8c51462 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.ThreadPool.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Timer.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Timer.dll new file mode 100755 index 00000000..3808d919 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Timer.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Timer.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Timer.dll.gz new file mode 100644 index 00000000..b9f7dbe9 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Timer.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.dll new file mode 100755 index 00000000..b5001366 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.dll.gz new file mode 100644 index 00000000..6f7a77d5 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.Local.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.Local.dll new file mode 100755 index 00000000..9103fbaf Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.Local.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.Local.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.Local.dll.gz new file mode 100644 index 00000000..c5401014 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.Local.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.dll new file mode 100755 index 00000000..df6e0b39 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.dll.gz new file mode 100644 index 00000000..6904d485 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ValueTuple.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ValueTuple.dll new file mode 100755 index 00000000..9ba751dd Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ValueTuple.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ValueTuple.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ValueTuple.dll.gz new file mode 100644 index 00000000..3039d045 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ValueTuple.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Web.HttpUtility.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Web.HttpUtility.dll new file mode 100755 index 00000000..8011df29 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Web.HttpUtility.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Web.HttpUtility.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Web.HttpUtility.dll.gz new file mode 100644 index 00000000..22e15d54 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Web.HttpUtility.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Web.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Web.dll new file mode 100755 index 00000000..4c55e12a Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Web.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Web.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Web.dll.gz new file mode 100644 index 00000000..73ac4682 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Web.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Windows.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Windows.dll new file mode 100755 index 00000000..21a16a3b Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Windows.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Windows.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Windows.dll.gz new file mode 100644 index 00000000..28203c43 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Windows.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Linq.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Linq.dll new file mode 100755 index 00000000..071a5742 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Linq.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Linq.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Linq.dll.gz new file mode 100644 index 00000000..d0fe0251 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Linq.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.ReaderWriter.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.ReaderWriter.dll new file mode 100755 index 00000000..7b562be9 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.ReaderWriter.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.ReaderWriter.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.ReaderWriter.dll.gz new file mode 100644 index 00000000..602d659d Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.ReaderWriter.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Serialization.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Serialization.dll new file mode 100755 index 00000000..f82c8c53 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Serialization.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Serialization.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Serialization.dll.gz new file mode 100644 index 00000000..fa19e569 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Serialization.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XDocument.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XDocument.dll new file mode 100755 index 00000000..9a88e99d Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XDocument.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XDocument.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XDocument.dll.gz new file mode 100644 index 00000000..154ad7a4 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XDocument.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll new file mode 100755 index 00000000..4baebf36 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll.gz new file mode 100644 index 00000000..2d843753 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.dll new file mode 100755 index 00000000..f803a527 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.dll.gz new file mode 100644 index 00000000..15314ee5 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlDocument.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlDocument.dll new file mode 100755 index 00000000..266b1548 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlDocument.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlDocument.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlDocument.dll.gz new file mode 100644 index 00000000..92589b88 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlDocument.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlSerializer.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlSerializer.dll new file mode 100755 index 00000000..25e30162 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlSerializer.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlSerializer.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlSerializer.dll.gz new file mode 100644 index 00000000..7b5b863d Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlSerializer.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.dll new file mode 100755 index 00000000..12661079 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.dll.gz new file mode 100644 index 00000000..ceb0c603 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.dll new file mode 100755 index 00000000..c06a0216 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.dll.gz new file mode 100644 index 00000000..ac2caceb Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/WindowsBase.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/WindowsBase.dll new file mode 100755 index 00000000..2dc8accc Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/WindowsBase.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/WindowsBase.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/WindowsBase.dll.gz new file mode 100644 index 00000000..1a996d70 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/WindowsBase.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/blazor.boot.json b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/blazor.boot.json new file mode 100644 index 00000000..8adcec16 --- /dev/null +++ b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/blazor.boot.json @@ -0,0 +1,218 @@ +{ + "cacheBootResources": true, + "config": [ ], + "debugBuild": true, + "entryAssembly": "CS_Todo", + "icuDataMode": 0, + "linkerEnabled": false, + "resources": { + "assembly": { + "Microsoft.AspNetCore.Authorization.dll": "sha256-ThsHz1KsYfsXW9VgMdflnhR6Na8ZrPnzhWrKZkjl6XE=", + "Microsoft.AspNetCore.Components.dll": "sha256-ramVDoksT5qhSqsyvuf70+Xk6LzKiCAjtzl9xVwIdV4=", + "Microsoft.AspNetCore.Components.Forms.dll": "sha256-zqsvvyL\/zGYEvF\/crCJ8Dt1fpz7KA7V0WEJBp\/9\/Z3w=", + "Microsoft.AspNetCore.Components.Web.dll": "sha256-sS1yMtnuQwl7ojhNaD0R8ObmmKTreSfkFAatoIeOKPw=", + "Microsoft.AspNetCore.Components.WebAssembly.dll": "sha256-ff+PbIVunuYwtTBsmbmdSZ\/VpZrr7Jwh3MzQDeFTNQ8=", + "Microsoft.AspNetCore.Metadata.dll": "sha256-qPWVrbWXmW6YIYXloJKVtDQ3yDqHpuWagvneU3Y+cnQ=", + "Microsoft.Extensions.Configuration.dll": "sha256-c8yYhfrOBLEnOBglLTu9peXSbJDwFpuT4UQiXSv28Og=", + "Microsoft.Extensions.Configuration.Abstractions.dll": "sha256-5Otet+KKVUjNkE\/hqcNWmt75H1K2VNuKPFagpRd6Ces=", + "Microsoft.Extensions.Configuration.Binder.dll": "sha256-wNKhG3Ovx8jqxbscz2AALlsTLfI6GL2dyDhe63mSsoM=", + "Microsoft.Extensions.Configuration.FileExtensions.dll": "sha256-n2fRP2\/1tGNzaCF5PU4hgTSlHK886OviBf2YAds3NdE=", + "Microsoft.Extensions.Configuration.Json.dll": "sha256-R28\/ywLWxIcFxKtDIj0IxC+bXi4urX6BHeLL24R+vTQ=", + "Microsoft.Extensions.DependencyInjection.dll": "sha256-KqgYK1NWqMxcNfw2Qah+gUhX2Nm+OZrHjyYDQ3VNCeA=", + "Microsoft.Extensions.DependencyInjection.Abstractions.dll": "sha256-nM2DA1GqKLxoPU+NHO\/Z5yQWH5ctJb+2Tu5b9VxIxeM=", + "Microsoft.Extensions.FileProviders.Abstractions.dll": "sha256-7PzvEcQvpK1c8tTX9VPI8AF+XrekqbAytNBQXJjvTvQ=", + "Microsoft.Extensions.FileProviders.Physical.dll": "sha256-sXujvGMZDgBBZ9HqfcEq9XsM0pvwyhPt60NA9qLDzGI=", + "Microsoft.Extensions.FileSystemGlobbing.dll": "sha256-viiXOG0fwhWobT0TQ1ZOJiZBdRvYRlWbDtjz+6d8sQI=", + "Microsoft.Extensions.Logging.dll": "sha256-GDZQCBtVHfrZZ6fL95lGoinLeUWLjQShLbfESwO7mrc=", + "Microsoft.Extensions.Logging.Abstractions.dll": "sha256-w+c+xfLh8QIAwluhugyPc8sPvAmmIC\/UTxnugT7Oido=", + "Microsoft.Extensions.Options.dll": "sha256-eGESyy9mRu8RcCGajAu4E8nxSmeB5nxiZkFPVaZ5Vl0=", + "Microsoft.Extensions.Primitives.dll": "sha256-jOmoWSfsdQexH\/6QCA56gR1RMEqeix2iDDUBWbpAOQI=", + "Microsoft.JSInterop.dll": "sha256-OBL83ANjfum7vDXWY9JzTSOLSr5DTTajTez0w\/70pAc=", + "Microsoft.JSInterop.WebAssembly.dll": "sha256-i3Tuz9JFTwJkZ9+s\/BT1Vpbtl5naeHj\/5Aq06H+nd\/s=", + "System.IO.Pipelines.dll": "sha256-6+E55JXedimdw1c1bDtVg4K7XuWjVWVTifH8QpfzXSY=", + "Microsoft.CSharp.dll": "sha256-DTiQAlsyxleRzVYl5Q95n\/wAbxwMf5CzRWBGSNndce4=", + "Microsoft.VisualBasic.Core.dll": "sha256-XpwlSCHsRJfMGP3vd1Zq\/e+KsMTv3frR\/Ftx27lsqxU=", + "Microsoft.VisualBasic.dll": "sha256-2YPfWC1cxNby7+lFjcW6I0FjJO+1hQD2Tx9pAslpOaI=", + "Microsoft.Win32.Primitives.dll": "sha256-p3C+90WlVAjddr27lDSZ66mIFlc6F0A4aelILkgKHU0=", + "Microsoft.Win32.Registry.dll": "sha256-fUqOutjkihP4PY2Eyn37CsgZKYoRikeQccy8J6hsfb0=", + "System.AppContext.dll": "sha256-t6Zreui7zFSw3c6IC1WpAo1V\/OuHOGotL9gJcRh8TvQ=", + "System.Buffers.dll": "sha256-Rr9SvcWPlGSvayICsgnqQJK0OeWe2m25wwJTNCPuf84=", + "System.Collections.Concurrent.dll": "sha256-7ikWFO3EjA773ell+B5EMYFt7OHzVG46mRr4jYQdyvc=", + "System.Collections.Immutable.dll": "sha256-hchEsTzQ8DcWMNTQHWafi3gewzjjaykjgADdaHT0z9Q=", + "System.Collections.NonGeneric.dll": "sha256-hXLOV7rHImmRuLzhnJULO39\/jg0wmu3bWS6GcACB8JQ=", + "System.Collections.Specialized.dll": "sha256-BTNKhTYhFwkOdB\/\/vEd3SsBw1vo5jam\/vTUU\/PHOUmc=", + "System.Collections.dll": "sha256-Hfd3VyXmqthQWRVQtmMM1brKz9mLtJOeS1Fwd5Fkkbs=", + "System.ComponentModel.Annotations.dll": "sha256-G7DizN2\/WB6PSfu7yREE83VvqvID9DxDJ9CQOm5OJ9s=", + "System.ComponentModel.DataAnnotations.dll": "sha256-qzRVEfUET67ioAnT0RznTagwjLBBKMPaAGvAfRzRE3A=", + "System.ComponentModel.EventBasedAsync.dll": "sha256-ZXBzt34cMpYI69Ou\/Rijmm4+CuxZ2+6W0P\/eErxcfdM=", + "System.ComponentModel.Primitives.dll": "sha256-fwuJJCfitpSohko3SnLvnJX4+5UNuH4GR2ieaFgojPU=", + "System.ComponentModel.TypeConverter.dll": "sha256-k3wJn8A4\/\/84p6s2JDmYSSzegw4P6DQWSVWu4547840=", + "System.ComponentModel.dll": "sha256-nVqe9YfUFGVfdYfhgrIsoT9YJ6YKRh0hA5gywmpaxjU=", + "System.Configuration.dll": "sha256-LJ1W0QuoJIZyRwSCsDCy\/qhXxk75P+Jr7QrseQRtLlA=", + "System.Console.dll": "sha256-CZW1x9WLZW\/8BLPvegtvSm8fpk9JEdYG+UFVUrvKax4=", + "System.Core.dll": "sha256-EQ7hUH6IBoSV6limPdxUV2hSmn\/OUdbcqWHc5TTQFJ0=", + "System.Data.Common.dll": "sha256-kqBQBBPXDXFuM7Wt3km8xjpmho2LAlb0GPtDH78bsKc=", + "System.Data.DataSetExtensions.dll": "sha256-KismBQJEPh4vrmmJ+6AM9mRVA5bqBPRP7JNgdmX1vIc=", + "System.Data.dll": "sha256-HnOqoXQON9wKp2MBkmm005AIkSD++P4CD5mDCIXSM6Y=", + "System.Diagnostics.Contracts.dll": "sha256-fgQjVXfB0lM7gAhETAA1alCjPPXlVN7jPsuBT626gmo=", + "System.Diagnostics.Debug.dll": "sha256-vWhuizbT3BcraRLloEE1z\/9OVpvDSFNTi+gRGTF3yLw=", + "System.Diagnostics.DiagnosticSource.dll": "sha256-c9\/2woK2NiIQVcMCduhXVbrB4cLq8bFYAtyh3+IjLiU=", + "System.Diagnostics.FileVersionInfo.dll": "sha256-I5mXaY\/kmdMVRqQa97+udyqQcsWw6qwDVy4lfmuA6Mg=", + "System.Diagnostics.Process.dll": "sha256-CSV7rAGb49mUp5myhjP6TuN4m+Da7yzbvjKZTKyS9As=", + "System.Diagnostics.StackTrace.dll": "sha256-PCw+c6+cWh7jvn0lf2xUPH9LDhtoH2uKeOGAqFH1\/sM=", + "System.Diagnostics.TextWriterTraceListener.dll": "sha256-IfcpavKuWN8+9dar9DNGR0VVErM7VcJXGh3\/e8\/7aJQ=", + "System.Diagnostics.Tools.dll": "sha256-Pd0AKzbexhmOEy4fzO0oVhI8JLmHDdnKcRcqv0I8Xy4=", + "System.Diagnostics.TraceSource.dll": "sha256-o0nZvh32wiUBRSDYeEW8lYdLNzdLrFXPlOz\/FlWScUI=", + "System.Diagnostics.Tracing.dll": "sha256-mDXcAJDyJLRK28S+AbkXisgMdMnqw\/yrVsV4vrQqyic=", + "System.Drawing.Primitives.dll": "sha256-cHnEhg0Hl74wfFBVVtGyiG3PiFPCKnNTdG6oS6ouKuU=", + "System.Drawing.dll": "sha256-Xth1Mp025xqdHL0sNVmLAC0mwYKP2KyGxv77Ov4U0j4=", + "System.Dynamic.Runtime.dll": "sha256-+JSklph8VwypNmKN1NvZWrqhol6HmsZhy6\/a7NwqSiA=", + "System.Formats.Asn1.dll": "sha256-jRIlBK0AXKpWqp9jhxJEg3KwA2wXQyr1s1FDQTAE5po=", + "System.Globalization.Calendars.dll": "sha256-XGlPyxjvtMmM71R+wvxct6BOClsk\/66Nw88vr\/wiy18=", + "System.Globalization.Extensions.dll": "sha256-DGBQx9eLm95Qd4bCASAkIV3IjeRhjQk8K4iB8FiC\/HY=", + "System.Globalization.dll": "sha256-p1Kg7JYY8A\/9Zu1Bs37Ov1sfVmXX4NEkWD8ZuT17lhk=", + "System.IO.Compression.Brotli.dll": "sha256-ZHuM\/O8FuaN8Y+VikxnW6gx3Dw06A7e8Tga194jpLRA=", + "System.IO.Compression.FileSystem.dll": "sha256-adiIihbdzJKEWvHj9R+wVXoZSs0yyrHd4sJRkvk2QS4=", + "System.IO.Compression.ZipFile.dll": "sha256-\/Fblw9ifsuFvYhitfTIt1SLdE0QdjcdYnwJauI41dgk=", + "System.IO.Compression.dll": "sha256-fL\/oh7ZbDjZHtFfeA4qA4vOB0jYquMGI6g1EOMiETe0=", + "System.IO.FileSystem.AccessControl.dll": "sha256-vF5g0DtXchZ\/ykI19sWXkMi6NJLgNLGTz9OrqlkAomU=", + "System.IO.FileSystem.DriveInfo.dll": "sha256-NIiDOxvjLRiSlUmAAjIKBEMA5R4fS2lhPbkQpOx7V0Q=", + "System.IO.FileSystem.Primitives.dll": "sha256-T09qbdzK1TMVz+ugkX6wSyX4EHcMA7McCCeAv+4h1os=", + "System.IO.FileSystem.Watcher.dll": "sha256-3\/SYNbAJUfi5h4eZ8jVTRIESPp4aINKzMNrEfn1\/0bQ=", + "System.IO.FileSystem.dll": "sha256-hqGZt\/GkCF\/VviK3WlcD0lDbU7TmdzqJCMmLqNhdvmU=", + "System.IO.IsolatedStorage.dll": "sha256-KV8lk4XaxthbFcnRcUZhFb3Sf+xYrv3LCDVq5QuEI7E=", + "System.IO.MemoryMappedFiles.dll": "sha256-XEaBeDUrqtUxYQUlmwDtqr6uwxf3k11dBfjKRJo7J7Q=", + "System.IO.Pipes.AccessControl.dll": "sha256-6hMgm2yZb\/Liph8bW\/3MPPeTxWQTzZDGVp257pNL+9I=", + "System.IO.Pipes.dll": "sha256-EUvq+Wtgn\/\/R8GQr0zHGBBOHOgg7gKCYGzIDQePcnnI=", + "System.IO.UnmanagedMemoryStream.dll": "sha256-haParxbxAdWXj5YHnRrwFPG1Coiz+UyVD2dj5pk7NoE=", + "System.IO.dll": "sha256-wgjIziVLwT9JICTA9j1Wc2QiPtz6ddGv1N4emIiZUZ0=", + "System.Linq.Expressions.dll": "sha256-JnbfKcHWk4mS0hThh0iK\/xXoBDZPYYHPBFg4rCkfH74=", + "System.Linq.Parallel.dll": "sha256-IoWwtz46jyS5TYpe3oq2jhAvZaNL3qrUqH\/pn6g81ps=", + "System.Linq.Queryable.dll": "sha256-+ilJppoIhpMWFf7BkgJN1O\/K2WZRobVzdL5uQEJRpYI=", + "System.Linq.dll": "sha256-q0TU9UBN5qrMjjExPwfayUxXICy2bJa8e1vDJBHhzA8=", + "System.Memory.dll": "sha256-oYk6qi1r8sg+Zl9h1GNvyGaEdM0ACZ5U2u4FXvW2T9Y=", + "System.Net.Http.Json.dll": "sha256-lOFQm8BMQn9Q0IW6CTb5OjjwFpn2HzqnIku292UDK7g=", + "System.Net.Http.dll": "sha256-V5KrR46s6mJoVZL7XlG3y7h1iGC0oZuTgB+Z7WZ+crM=", + "System.Net.HttpListener.dll": "sha256-IvzjBKYtbMP15gaaMkTofPoB7YOvqm1dPrbBG0n2Nek=", + "System.Net.Mail.dll": "sha256-gedlGV\/sY+UjzzIOJMBJvcy00GitWO0v206FV8uzDSg=", + "System.Net.NameResolution.dll": "sha256-h6jdLrsKU8UI\/EXQYpKRJYjrpLsKkJj2u+ZcVGdHSYg=", + "System.Net.NetworkInformation.dll": "sha256-xd8n8NF4u5MakSPKcU3JhU+bClghk3BpDJbb0JZkAHU=", + "System.Net.Ping.dll": "sha256-kfkfLQxfducMqHPORt29USgsxycg99IjvPscCrAwcnc=", + "System.Net.Primitives.dll": "sha256-jiQTkbLwXx5cLqgy+hASC4lEamtNEV4rxGkHsquBJRM=", + "System.Net.Quic.dll": "sha256-qfaWQS2lx8owjnPpqbz3rp19kfi7FUS1Hvv3\/gIEpsc=", + "System.Net.Requests.dll": "sha256-jWJxHXMEDDX2PkxR1yJlkUDaK7AorSL59lGmT3\/gplY=", + "System.Net.Security.dll": "sha256-YJZYS7\/x9gPFzLKH3zKEuVrshMkxLvE6aROFXkf1Gn4=", + "System.Net.ServicePoint.dll": "sha256-pQZ9QaquUDBJKoOr\/j9reDtaEAxKECOG10DEFnFE7J8=", + "System.Net.Sockets.dll": "sha256-oo5bxuBWA+nyea3MzKF+JAbQuzixrxPP3Sdc6i\/jQE0=", + "System.Net.WebClient.dll": "sha256-2RXo1OzsG56GMi0d6C8ZecTUlQTAxZfgtAgSwwFM4sI=", + "System.Net.WebHeaderCollection.dll": "sha256-0HFugpF3U82V7giQcVpAvyNmGGsirjBysbrhicIE\/D8=", + "System.Net.WebProxy.dll": "sha256-dPDyqfsZyDLrWJpWL+hH3iip\/DCa4YCO2vOsnB1QNeo=", + "System.Net.WebSockets.Client.dll": "sha256-Li4Ui256PFinke6S5e4FPxsN8WEpuwZQdh7B0859Oao=", + "System.Net.WebSockets.dll": "sha256-25K29AqqKbYzlR3C0U53ovqb01XjXlG73TAQ8oSFKok=", + "System.Net.dll": "sha256-TqXc50KWlt6yhNrftm5myBeh7L7IPwIVmLvVQtC0fPI=", + "System.Numerics.Vectors.dll": "sha256-7xFg+9J3CDv00FiXUVpHjjMG+a2sUpDTD1GxwzQfvz0=", + "System.Numerics.dll": "sha256-glxIjyXPTmRAr+g7WWz\/gylFj94ufwu8EgcADoSn4UY=", + "System.ObjectModel.dll": "sha256-5XPvCN7bvD+nvEK7lg0a8QvC5YfEzVtQs532ntmDRkc=", + "System.Private.DataContractSerialization.dll": "sha256-\/58zfnjF5D\/uGHrpeV96DNkmAwghZIUDLQCvYMdcqMQ=", + "System.Private.Runtime.InteropServices.JavaScript.dll": "sha256-sZq8h6v9+HzJduNuvBE9PXllpbfTmX6hH4lTopVhtiY=", + "System.Private.Uri.dll": "sha256-\/fxECHlxoTOs8Mn1aU4ee4b2wTHHTTjP7K17O0gldGk=", + "System.Private.Xml.Linq.dll": "sha256-4Jmzoa+wHxawQOgruqhEHFo7VoJu7PuQ0VxHZAqMEwA=", + "System.Private.Xml.dll": "sha256-ogwWaUkhSaONs\/a34hxZNQhXnTtNuPtuQeYksDwUUeY=", + "System.Reflection.DispatchProxy.dll": "sha256-pIeoi5ZyWfM6xrl8lDKv4VreByvMN7lPnQR9AgJeE28=", + "System.Reflection.Emit.ILGeneration.dll": "sha256-LueM9AEwxiu994zaI4Y1R+GnkRzarZ3A\/r2cwHojqmE=", + "System.Reflection.Emit.Lightweight.dll": "sha256-G7ikMo\/7LTXJfdmuMt+hPzZyNrq0xeEyOpIgcqjXwxg=", + "System.Reflection.Emit.dll": "sha256-WyKK9JFByPsUH71TmzVN0+QQ3Buc8s8+yVlrfh+me9I=", + "System.Reflection.Extensions.dll": "sha256-cVIe9uA5yIu4uWK+KDC58KMah+989j\/gCQAwDPDRMCo=", + "System.Reflection.Metadata.dll": "sha256-eiHYxLZcPWQ4NplkJApjDAjer3\/CXzkbjIlWP4BVxZY=", + "System.Reflection.Primitives.dll": "sha256-9xKjdHeGa+Z8HDXsBLU9VT6KDvrYyAfxhY72ghjULxk=", + "System.Reflection.TypeExtensions.dll": "sha256-O2P65lwKgKAiyVTQV+448\/SBwGBxvFhwT3mj8NH8cvc=", + "System.Reflection.dll": "sha256-+RQVFypgSkJT+ZT2ZGK3yxL2frNDGw3mdDfPJFso6fA=", + "System.Resources.Reader.dll": "sha256-7MF5gqMwKBtG6syx4mA9UaDx3VZFPjkfQZPLBvJT4\/s=", + "System.Resources.ResourceManager.dll": "sha256-OFykbIMSJdRuTA4xMcdHimmxnT73rOQDw5NeSE+9htA=", + "System.Resources.Writer.dll": "sha256-UUUI+5adbdjkjlZ0fveFLPl6JRRi28iHIwMshfIgJRE=", + "System.Runtime.CompilerServices.Unsafe.dll": "sha256-CqSssMJbGk0yrSgRvIeImkILKO8qrvy8ygJi4cCvMVo=", + "System.Runtime.CompilerServices.VisualC.dll": "sha256-jTN3cN8EukzizquRq1rrP5ofD1pUbMz4ApV13ShdS0A=", + "System.Runtime.Extensions.dll": "sha256-IzhYlVJmqKtdy6Rya3AXNX5\/r5xgw4tu2waaF\/25Qiw=", + "System.Runtime.Handles.dll": "sha256-rFFxn2HCy4++vJDCYgh23aTRopEGI5hXPwhmTRvdpGE=", + "System.Runtime.InteropServices.RuntimeInformation.dll": "sha256-RTnP9JTj42tuhKZTCkPXhgCDqq4+05e56CyCDaOwKl8=", + "System.Runtime.InteropServices.dll": "sha256-eUlrst1Sr9rfmCvDdYAQr\/rY7imOTrpOOUle3ukkDqg=", + "System.Runtime.Intrinsics.dll": "sha256-ozXQ0FFvGz0b20edF1DSLCZIUaPXQopuPnYXRIY07KE=", + "System.Runtime.Loader.dll": "sha256-bqS89LjjIsGfqljlGhzpFGGNs07aNWmN+x7eLPcW8R0=", + "System.Runtime.Numerics.dll": "sha256-Abgl5SnjdbjOWl2wNjl5DIuEG7ShWKWt4o9lgUULy0M=", + "System.Runtime.Serialization.Formatters.dll": "sha256-iRHmMGm6ySbJzcFyAC25e989ydE0eo3IsN55IsLu3d0=", + "System.Runtime.Serialization.Json.dll": "sha256-VfzXxKXtJSyY+KmHdIMN3c6xeDyqgA9+WclmQKeR54Y=", + "System.Runtime.Serialization.Primitives.dll": "sha256-\/rBPDB5azk5JlSWPfLbm2WOO7YQKLnLtrN7gHaxe9Yg=", + "System.Runtime.Serialization.Xml.dll": "sha256-8QtC\/IjtvFItYYwXk0VLHGJMDqL9P7bPer8JKZOYGfQ=", + "System.Runtime.Serialization.dll": "sha256-U875gqshsO5L+YAP6hyIKfweNpixtkOG6qNE52O0q+w=", + "System.Runtime.dll": "sha256-j9kWpDzD40DAwxrTERegus\/G7KnF8YSKO8S065VKT4o=", + "System.Security.AccessControl.dll": "sha256-TBfQQ5Fa04pTX261SYI0vpf8+O4T+yAG2mhvky\/5Jbs=", + "System.Security.Claims.dll": "sha256-oEHwCa7DPtnKwOS4WZIdN4q4bubvehYds0YzFzS0gs0=", + "System.Security.Cryptography.Algorithms.dll": "sha256-LBH7u7zq5JA+sR5nLpJLlHPJTYtfd00w1GBdKZkMH2Y=", + "System.Security.Cryptography.Cng.dll": "sha256-n8cw6P2YbxKAmwAIzHGy+sAikeRYSLvRBfshBlGsQHs=", + "System.Security.Cryptography.Csp.dll": "sha256-6aBpB9npiSFjK6NFPlw57\/PaieketdyHBWAcVOprZvY=", + "System.Security.Cryptography.Encoding.dll": "sha256-LzxcqpuMxoj\/goByx9RVNGm+5j6Fp2KG8KYmBRieuVk=", + "System.Security.Cryptography.OpenSsl.dll": "sha256-rGbXDCZtjr2+wLlSSlFxzszQXJ3Avx9JWLD\/YXggUL8=", + "System.Security.Cryptography.Primitives.dll": "sha256-ySmjc4oFIVwc4rbf9gHjQk\/H5xqj1yKnrr8tphQ0K8A=", + "System.Security.Cryptography.X509Certificates.dll": "sha256-cYr\/etpjirQZ3GfarnhT3NkgQyNnMDBH276C4t3h\/cU=", + "System.Security.Principal.Windows.dll": "sha256-A5M99Vw6QUTSCcPSUX5zCe9vlkb1Ld71\/943z2g3GVQ=", + "System.Security.Principal.dll": "sha256-Xbl8i4ZjksXX2c+HU365Vuv9x5FecSEnelzX9y2kvO4=", + "System.Security.SecureString.dll": "sha256-Zfqdu3+ZEz4HUJXD12Ln\/E8FCCvgIaiRpeBb+mISyks=", + "System.Security.dll": "sha256-q90WBQXBCNV2FXxFC46wlPgqkEUEJKSMHdoV1Br4A6s=", + "System.ServiceModel.Web.dll": "sha256-+6G03ITowt7oy\/aaLRWFp5PN6m84+ewtNab1dajUIhw=", + "System.ServiceProcess.dll": "sha256-LVBg2uy0nYFdnj1q1Qj4R7LPNNOJlSoLJDPIZKxpyQM=", + "System.Text.Encoding.CodePages.dll": "sha256-hb4KQccZSB\/UVJu3kYvqdED2StH537og4MwyxOhK2Xk=", + "System.Text.Encoding.Extensions.dll": "sha256-DzFbfa5m+kpYHHAN70x7kNHYcSQEN6qGOp45cNaUkf4=", + "System.Text.Encoding.dll": "sha256-nYxMecx8rl4XEJz16hX5mNoZyXwKyo\/oyqOgqa8ngPo=", + "System.Text.Encodings.Web.dll": "sha256-KOfhwu36j6PGKifllcw2pCvVnI5bXjQ1uy+fws8SX4k=", + "System.Text.Json.dll": "sha256-ZDegGiuKKspUO7SseFjAazlrG\/XL0+3OulWB61RkxHY=", + "System.Text.RegularExpressions.dll": "sha256-wbE7C5Vzd2yGSapmTog4uzwEYAOcjP42D8mv7o8UztQ=", + "System.Threading.Channels.dll": "sha256-pR4ZTBTXQGD5ttbQLbHVc8QDJ6qbs5NpSkOdwVnrM7Q=", + "System.Threading.Overlapped.dll": "sha256-Bi2rKiVug79LLXf3KnDkfTg8gXN1iX2D5Uuc2314Wkw=", + "System.Threading.Tasks.Dataflow.dll": "sha256-ademXYm2dl74ssKZ4zE6mZbm1CCPDRVBGfVCISLxp4M=", + "System.Threading.Tasks.Extensions.dll": "sha256-gMObICJqeB\/HOEWylXLTQ6wyaK6EWXaMAAOMrZC6Lpc=", + "System.Threading.Tasks.Parallel.dll": "sha256-E9bQEMr\/i62sCw253\/\/mQqb87atvymHWBgFpCGXcf44=", + "System.Threading.Tasks.dll": "sha256-IrhLF6slaiCsr6liKGz1TOFcCGRQAsbb+0+SXVreBls=", + "System.Threading.Thread.dll": "sha256-kzMm8Wxs1qQdYdfxL0Kt4OTGIRyZh9MSj\/OLBY1Zxr0=", + "System.Threading.ThreadPool.dll": "sha256-famO3aY6bbG0A2gdbw8J6hLAyPFXxrT8uMsWe9MVJaI=", + "System.Threading.Timer.dll": "sha256-9rYxsl+493T8HHVDB24pXOfP9EFEWg32kqh841\/9kwY=", + "System.Threading.dll": "sha256-D+mOgDQ\/OIe02R4GBoDEkzOsMQl42gXx8wdzYOkgc1k=", + "System.Transactions.Local.dll": "sha256-bHAJZGLDyFhY2oZN4esSF40n+m+eL9yHAk0sZRSWBXQ=", + "System.Transactions.dll": "sha256-n2hpTYnj3p6+EtowlUvqJuLpL73TiLHckM6DW2Ku6hw=", + "System.ValueTuple.dll": "sha256-fu4KNW5Rf1TlvI+sFCEE9hTW2tlATbgPhMqeinlU\/eo=", + "System.Web.HttpUtility.dll": "sha256-3YGb3omuC6Q+Q86kK0NvRcau1ELuITFKbOEtYfy\/AJs=", + "System.Web.dll": "sha256-hNuDr0Dl73i32MmchM6PJt3Zj3kCeEME0tDs\/YtcBU0=", + "System.Windows.dll": "sha256-wQo8T9G7Ud5ZHeFPIhD5T3mgrZinlz3yOAbm4oV9FLA=", + "System.Xml.Linq.dll": "sha256-uQMOTPOLA0niqNqAl8p2Jtzatd\/6joKmws8pUSSulOQ=", + "System.Xml.ReaderWriter.dll": "sha256-NDgXO5olB1rW9Ej\/fSAGfhEbwWuJirOsBT9g\/DJuW1k=", + "System.Xml.Serialization.dll": "sha256-VB2dfQx8tjNMJh5blyXchThFD3ZSoEXZuyCmWMSEf5E=", + "System.Xml.XDocument.dll": "sha256-7f2A4S69q\/\/\/NoRMzo\/S2tZXlOIILAq3VXpGlLOSfYc=", + "System.Xml.XPath.XDocument.dll": "sha256-qJFhN5jZKFIVM5ciVBMQ1LxDA2KNa0DlcCHROkEd6Pw=", + "System.Xml.XPath.dll": "sha256-kiFGSepc9jc12YTeMagztRjQQ\/RpBm\/hrvEtxlVHtDU=", + "System.Xml.XmlDocument.dll": "sha256-2eYuiGiLeqmkmz7pKFlxJV1Rp4DztFYiGdSYc7CC8KY=", + "System.Xml.XmlSerializer.dll": "sha256-m2vndNkziRVbRa8+Uimxmp\/H4\/iWLqmqlgm3kIvldjE=", + "System.Xml.dll": "sha256-LtfKOlwYMcSzbkQhXw3NEnOC6hYLrVgvC3Ls1UMOtAM=", + "System.dll": "sha256-BfD7NThExjelvevG5DSS5CGh5\/AyNynAvXquUtMcAN4=", + "WindowsBase.dll": "sha256-bNpUu6qzQtGy+s8hBWoEFIwnRUrKtIv+wcIjuXDxU0Q=", + "mscorlib.dll": "sha256-ghlJNtzzYlKIliGPuf0A0Yu6dmLycSx3F9uyeddFb\/g=", + "netstandard.dll": "sha256-qpOz\/RBwhlIYfaE2GDEmjiproxkvSf2b9GeqHxvH+lg=", + "System.Private.CoreLib.dll": "sha256-sfzSZ3YKC2rpF77TVOKLuPgQag93QXr9U4AUc9d\/LKA=", + "CS_Todo.dll": "sha256-9oImoVHVCpSklrUaBL\/57CQopy8ZbBV9n8UuUE8xEsk=" + }, + "extensions": null, + "lazyAssembly": null, + "libraryInitializers": null, + "pdb": { + "CS_Todo.pdb": "sha256-qOKhhftx65\/E3YIfnTI7UzN1+nub1PeouqBzLxdc\/iY=" + }, + "runtime": { + "dotnet.6.0.5.itaht6zf1c.js": "sha256-783uOt0jgblQfP6Yz5TJeuW2xxtl6UHZQPngZtCz79U=", + "dotnet.timezones.blat": "sha256-vRU6+wGzQ3FJ0JtyPJtipblPe9MvJf+qKY20xZhuyKQ=", + "dotnet.wasm": "sha256-vmRDDmubs49Hwffzas8p5i8FwcPcYxb33H6g5\/2UyYk=", + "icudt.dat": "sha256-Zuq0dWAsBm6\/2lSOsz7+H9PvFaRn61KIXHMMwXDfvyE=", + "icudt_CJK.dat": "sha256-WPyI4hWDPnOw62Nr27FkzGjdbucZnQD+Ph+GOPhAedw=", + "icudt_EFIGS.dat": "sha256-4RwaPx87Z4dvn77ie\/ro3\/QzyS+\/gGmO3Y\/0CSAXw4k=", + "icudt_no_CJK.dat": "sha256-OxylFgLJlFqixsj+nLxYVsv5iZLvfIKMpLf9hrWaChA=" + }, + "satelliteResources": null + } +} \ No newline at end of file diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/blazor.webassembly.js b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/blazor.webassembly.js new file mode 100755 index 00000000..f8897437 --- /dev/null +++ b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/blazor.webassembly.js @@ -0,0 +1 @@ +(()=>{"use strict";var e,t,n;!function(e){window.DotNet=e;const t=[],n=new Map,r=new Map,o="__jsObjectId",s="__byte[]";class a{constructor(e){this._jsObject=e,this._cachedFunctions=new Map}findFunction(e){const t=this._cachedFunctions.get(e);if(t)return t;let n,r=this._jsObject;if(e.split(".").forEach((t=>{if(!(t in r))throw new Error(`Could not find '${e}' ('${t}' was undefined).`);n=r,r=r[t]})),r instanceof Function)return r=r.bind(n),this._cachedFunctions.set(e,r),r;throw new Error(`The value '${e}' is not a function.`)}getWrappedObject(){return this._jsObject}}const i={},c={0:new a(window)};c[0]._cachedFunctions.set("import",(e=>("string"==typeof e&&e.startsWith("./")&&(e=document.baseURI+e.substr(2)),import(e))));let l,u=1,d=1,f=null;function m(e){t.push(e)}function h(e){if(e&&"object"==typeof e){c[d]=new a(e);const t={[o]:d};return d++,t}throw new Error(`Cannot create a JSObjectReference from the value '${e}'.`)}function p(e){let t=-1;if(e instanceof ArrayBuffer&&(e=new Uint8Array(e)),e instanceof Blob)t=e.size;else{if(!(e.buffer instanceof ArrayBuffer))throw new Error("Supplied value is not a typed array or blob.");if(void 0===e.byteLength)throw new Error(`Cannot create a JSStreamReference from the value '${e}' as it doesn't have a byteLength.`);t=e.byteLength}const n={__jsStreamReferenceLength:t};try{const t=h(e);n.__jsObjectId=t.__jsObjectId}catch{throw new Error(`Cannot create a JSStreamReference from the value '${e}'.`)}return n}function y(e){return e?JSON.parse(e,((e,n)=>t.reduce(((t,n)=>n(e,t)),n))):null}function g(e,t,n,r){const o=w();if(o.invokeDotNetFromJS){const s=O(r),a=o.invokeDotNetFromJS(e,t,n,s);return a?y(a):null}throw new Error("The current dispatcher does not support synchronous calls from JS to .NET. Use invokeMethodAsync instead.")}function b(e,t,n,r){if(e&&n)throw new Error(`For instance method calls, assemblyName should be null. Received '${e}'.`);const o=u++,s=new Promise(((e,t)=>{i[o]={resolve:e,reject:t}}));try{const s=O(r);w().beginInvokeDotNetFromJS(o,e,t,n,s)}catch(e){v(o,!1,e)}return s}function w(){if(null!==f)return f;throw new Error("No .NET call dispatcher has been set.")}function v(e,t,n){if(!i.hasOwnProperty(e))throw new Error(`There is no pending async call with ID ${e}.`);const r=i[e];delete i[e],t?r.resolve(n):r.reject(n)}function E(e){return e instanceof Error?`${e.message}\n${e.stack}`:e?e.toString():"null"}function _(e,t){let n=c[t];if(n)return n.findFunction(e);throw new Error(`JS object instance with ID ${t} does not exist (has it been disposed?).`)}function I(e){delete c[e]}e.attachDispatcher=function(e){f=e},e.attachReviver=m,e.invokeMethod=function(e,t,...n){return g(e,t,null,n)},e.invokeMethodAsync=function(e,t,...n){return b(e,t,null,n)},e.createJSObjectReference=h,e.createJSStreamReference=p,e.disposeJSObjectReference=function(e){const t=e&&e.__jsObjectId;"number"==typeof t&&I(t)},function(e){e[e.Default=0]="Default",e[e.JSObjectReference=1]="JSObjectReference",e[e.JSStreamReference=2]="JSStreamReference",e[e.JSVoidResult=3]="JSVoidResult"}(l=e.JSCallResultType||(e.JSCallResultType={})),e.jsCallDispatcher={findJSFunction:_,disposeJSObjectReferenceById:I,invokeJSFromDotNet:(e,t,n,r)=>{const o=S(_(e,r).apply(null,y(t)),n);return null==o?null:O(o)},beginInvokeJSFromDotNet:(e,t,n,r,o)=>{const s=new Promise((e=>{e(_(t,o).apply(null,y(n)))}));e&&s.then((t=>w().endInvokeJSFromDotNet(e,!0,O([e,!0,S(t,r)]))),(t=>w().endInvokeJSFromDotNet(e,!1,JSON.stringify([e,!1,E(t)]))))},endInvokeDotNetFromJS:(e,t,n)=>{const r=t?y(n):new Error(n);v(parseInt(e),t,r)},receiveByteArray:(e,t)=>{n.set(e,t)},supplyDotNetStream:(e,t)=>{if(r.has(e)){const n=r.get(e);r.delete(e),n.resolve(t)}else{const n=new A;n.resolve(t),r.set(e,n)}}};class N{constructor(e){this._id=e}invokeMethod(e,...t){return g(null,e,this._id,t)}invokeMethodAsync(e,...t){return b(null,e,this._id,t)}dispose(){b(null,"__Dispose",this._id,null).catch((e=>console.error(e)))}serializeAsArg(){return{__dotNetObject:this._id}}}e.DotNetObject=N,m((function(e,t){if(t&&"object"==typeof t){if(t.hasOwnProperty("__dotNetObject"))return new N(t.__dotNetObject);if(t.hasOwnProperty(o)){const e=t.__jsObjectId,n=c[e];if(n)return n.getWrappedObject();throw new Error(`JS object instance with Id '${e}' does not exist. It may have been disposed.`)}if(t.hasOwnProperty(s)){const e=t["__byte[]"],r=n.get(e);if(void 0===r)throw new Error(`Byte array index '${e}' does not exist.`);return n.delete(e),r}if(t.hasOwnProperty("__dotNetStream"))return new C(t.__dotNetStream)}return t}));class C{constructor(e){var t;if(r.has(e))this._streamPromise=null===(t=r.get(e))||void 0===t?void 0:t.streamPromise,r.delete(e);else{const t=new A;r.set(e,t),this._streamPromise=t.streamPromise}}stream(){return this._streamPromise}async arrayBuffer(){return new Response(await this.stream()).arrayBuffer()}}class A{constructor(){this.streamPromise=new Promise(((e,t)=>{this.resolve=e,this.reject=t}))}}function S(e,t){switch(t){case l.Default:return e;case l.JSObjectReference:return h(e);case l.JSStreamReference:return p(e);case l.JSVoidResult:return null;default:throw new Error(`Invalid JS call result type '${t}'.`)}}let R=0;function O(e){return R=0,JSON.stringify(e,k)}function k(e,t){if(t instanceof N)return t.serializeAsArg();if(t instanceof Uint8Array){f.sendByteArray(R,t);const e={[s]:R};return R++,e}return t}}(e||(e={})),function(e){e[e.prependFrame=1]="prependFrame",e[e.removeFrame=2]="removeFrame",e[e.setAttribute=3]="setAttribute",e[e.removeAttribute=4]="removeAttribute",e[e.updateText=5]="updateText",e[e.stepIn=6]="stepIn",e[e.stepOut=7]="stepOut",e[e.updateMarkup=8]="updateMarkup",e[e.permutationListEntry=9]="permutationListEntry",e[e.permutationListEnd=10]="permutationListEnd"}(t||(t={})),function(e){e[e.element=1]="element",e[e.text=2]="text",e[e.attribute=3]="attribute",e[e.component=4]="component",e[e.region=5]="region",e[e.elementReferenceCapture=6]="elementReferenceCapture",e[e.markup=8]="markup"}(n||(n={}));class r{constructor(e,t){this.componentId=e,this.fieldValue=t}static fromEvent(e,t){const n=t.target;if(n instanceof Element){const t=function(e){return e instanceof HTMLInputElement?e.type&&"checkbox"===e.type.toLowerCase()?{value:e.checked}:{value:e.value}:e instanceof HTMLSelectElement||e instanceof HTMLTextAreaElement?{value:e.value}:null}(n);if(t)return new r(e,t.value)}return null}}const o=new Map,s=new Map,a=[];function i(e){return o.get(e)}function c(e){const t=o.get(e);return(null==t?void 0:t.browserEventName)||e}function l(e,t){e.forEach((e=>o.set(e,t)))}function u(e){const t=[];for(let n=0;ne.selected)).map((e=>e.value))}}return{value:function(e){return!!e&&"INPUT"===e.tagName&&"checkbox"===e.getAttribute("type")}(t)?!!t.checked:t.value}}}),l(["copy","cut","paste"],{createEventArgs:e=>({type:e.type})}),l(["drag","dragend","dragenter","dragleave","dragover","dragstart","drop"],{createEventArgs:e=>{return{...d(t=e),dataTransfer:t.dataTransfer?{dropEffect:t.dataTransfer.dropEffect,effectAllowed:t.dataTransfer.effectAllowed,files:Array.from(t.dataTransfer.files).map((e=>e.name)),items:Array.from(t.dataTransfer.items).map((e=>({kind:e.kind,type:e.type}))),types:t.dataTransfer.types}:null};var t}}),l(["focus","blur","focusin","focusout"],{createEventArgs:e=>({type:e.type})}),l(["keydown","keyup","keypress"],{createEventArgs:e=>{return{key:(t=e).key,code:t.code,location:t.location,repeat:t.repeat,ctrlKey:t.ctrlKey,shiftKey:t.shiftKey,altKey:t.altKey,metaKey:t.metaKey,type:t.type};var t}}),l(["contextmenu","click","mouseover","mouseout","mousemove","mousedown","mouseup","dblclick"],{createEventArgs:e=>d(e)}),l(["error"],{createEventArgs:e=>{return{message:(t=e).message,filename:t.filename,lineno:t.lineno,colno:t.colno,type:t.type};var t}}),l(["loadstart","timeout","abort","load","loadend","progress"],{createEventArgs:e=>{return{lengthComputable:(t=e).lengthComputable,loaded:t.loaded,total:t.total,type:t.type};var t}}),l(["touchcancel","touchend","touchmove","touchenter","touchleave","touchstart"],{createEventArgs:e=>{return{detail:(t=e).detail,touches:u(t.touches),targetTouches:u(t.targetTouches),changedTouches:u(t.changedTouches),ctrlKey:t.ctrlKey,shiftKey:t.shiftKey,altKey:t.altKey,metaKey:t.metaKey,type:t.type};var t}}),l(["gotpointercapture","lostpointercapture","pointercancel","pointerdown","pointerenter","pointerleave","pointermove","pointerout","pointerover","pointerup"],{createEventArgs:e=>{return{...d(t=e),pointerId:t.pointerId,width:t.width,height:t.height,pressure:t.pressure,tiltX:t.tiltX,tiltY:t.tiltY,pointerType:t.pointerType,isPrimary:t.isPrimary};var t}}),l(["wheel","mousewheel"],{createEventArgs:e=>{return{...d(t=e),deltaX:t.deltaX,deltaY:t.deltaY,deltaZ:t.deltaZ,deltaMode:t.deltaMode};var t}}),l(["toggle"],{createEventArgs:()=>({})});const f=["date","datetime-local","month","time","week"],m=new Map;let h,p,y=0;const g={async add(e,t,n){if(!n)throw new Error("initialParameters must be an object, even if empty.");const r="__bl-dynamic-root:"+(++y).toString();m.set(r,e);const o=await v().invokeMethodAsync("AddRootComponent",t,r),s=new w(o,p[t]);return await s.setParameters(n),s}};class b{invoke(e){return this._callback(e)}setCallback(t){this._selfJSObjectReference||(this._selfJSObjectReference=e.createJSObjectReference(this)),this._callback=t}getJSObjectReference(){return this._selfJSObjectReference}dispose(){this._selfJSObjectReference&&e.disposeJSObjectReference(this._selfJSObjectReference)}}class w{constructor(e,t){this._jsEventCallbackWrappers=new Map,this._componentId=e;for(const e of t)"eventcallback"===e.type&&this._jsEventCallbackWrappers.set(e.name.toLowerCase(),new b)}setParameters(e){const t={},n=Object.entries(e||{}),r=n.length;for(const[e,r]of n){const n=this._jsEventCallbackWrappers.get(e.toLowerCase());n&&r?(n.setCallback(r),t[e]=n.getJSObjectReference()):t[e]=r}return v().invokeMethodAsync("SetRootComponentParameters",this._componentId,r,t)}async dispose(){if(null!==this._componentId){await v().invokeMethodAsync("RemoveRootComponent",this._componentId),this._componentId=null;for(const e of this._jsEventCallbackWrappers.values())e.dispose()}}}function v(){if(!h)throw new Error("Dynamic root components have not been enabled in this application.");return h}const E=new Map;let _;const I=new Promise((e=>{_=e}));function N(e,t,n){return A(e,t.eventHandlerId,(()=>C(e).invokeMethodAsync("DispatchEventAsync",t,n)))}function C(e){const t=E.get(e);if(!t)throw new Error(`No interop methods are registered for renderer ${e}`);return t}let A=(e,t,n)=>n();const S=F(["abort","blur","canplay","canplaythrough","change","cuechange","durationchange","emptied","ended","error","focus","load","loadeddata","loadedmetadata","loadend","loadstart","mouseenter","mouseleave","pause","play","playing","progress","ratechange","reset","scroll","seeked","seeking","stalled","submit","suspend","timeupdate","toggle","unload","volumechange","waiting","DOMNodeInsertedIntoDocument","DOMNodeRemovedFromDocument"]),R={submit:!0},O=F(["click","dblclick","mousedown","mousemove","mouseup"]);class k{constructor(e){this.browserRendererId=e,this.afterClickCallbacks=[];const t=++k.nextEventDelegatorId;this.eventsCollectionKey=`_blazorEvents_${t}`,this.eventInfoStore=new D(this.onGlobalEvent.bind(this))}setListener(e,t,n,r){const o=this.getEventHandlerInfosForElement(e,!0),s=o.getHandler(t);if(s)this.eventInfoStore.update(s.eventHandlerId,n);else{const s={element:e,eventName:t,eventHandlerId:n,renderingComponentId:r};this.eventInfoStore.add(s),o.setHandler(t,s)}}getHandler(e){return this.eventInfoStore.get(e)}removeListener(e){const t=this.eventInfoStore.remove(e);if(t){const e=t.element,n=this.getEventHandlerInfosForElement(e,!1);n&&n.removeHandler(t.eventName)}}notifyAfterClick(e){this.afterClickCallbacks.push(e),this.eventInfoStore.addGlobalListener("click")}setStopPropagation(e,t,n){this.getEventHandlerInfosForElement(e,!0).stopPropagation(t,n)}setPreventDefault(e,t,n){this.getEventHandlerInfosForElement(e,!0).preventDefault(t,n)}onGlobalEvent(e){if(!(e.target instanceof Element))return;this.dispatchGlobalEventToAllElements(e.type,e);const t=(n=e.type,s.get(n));var n;t&&t.forEach((t=>this.dispatchGlobalEventToAllElements(t,e))),"click"===e.type&&this.afterClickCallbacks.forEach((t=>t(e)))}dispatchGlobalEventToAllElements(e,t){const n=t.composedPath();let o=n.shift(),s=null,a=!1;const c=S.hasOwnProperty(e);let l=!1;for(;o;){const f=o,m=this.getEventHandlerInfosForElement(f,!1);if(m){const n=m.getHandler(e);if(n&&(u=f,d=t.type,!((u instanceof HTMLButtonElement||u instanceof HTMLInputElement||u instanceof HTMLTextAreaElement||u instanceof HTMLSelectElement)&&O.hasOwnProperty(d)&&u.disabled))){if(!a){const n=i(e);s=(null==n?void 0:n.createEventArgs)?n.createEventArgs(t):{},a=!0}R.hasOwnProperty(t.type)&&t.preventDefault(),N(this.browserRendererId,{eventHandlerId:n.eventHandlerId,eventName:e,eventFieldInfo:r.fromEvent(n.renderingComponentId,t)},s)}m.stopPropagation(e)&&(l=!0),m.preventDefault(e)&&t.preventDefault()}o=c||l?void 0:n.shift()}var u,d}getEventHandlerInfosForElement(e,t){return e.hasOwnProperty(this.eventsCollectionKey)?e[this.eventsCollectionKey]:t?e[this.eventsCollectionKey]=new B:null}}k.nextEventDelegatorId=0;class D{constructor(e){this.globalListener=e,this.infosByEventHandlerId={},this.countByEventName={},a.push(this.handleEventNameAliasAdded.bind(this))}add(e){if(this.infosByEventHandlerId[e.eventHandlerId])throw new Error(`Event ${e.eventHandlerId} is already tracked`);this.infosByEventHandlerId[e.eventHandlerId]=e,this.addGlobalListener(e.eventName)}get(e){return this.infosByEventHandlerId[e]}addGlobalListener(e){if(e=c(e),this.countByEventName.hasOwnProperty(e))this.countByEventName[e]++;else{this.countByEventName[e]=1;const t=S.hasOwnProperty(e);document.addEventListener(e,this.globalListener,t)}}update(e,t){if(this.infosByEventHandlerId.hasOwnProperty(t))throw new Error(`Event ${t} is already tracked`);const n=this.infosByEventHandlerId[e];delete this.infosByEventHandlerId[e],n.eventHandlerId=t,this.infosByEventHandlerId[t]=n}remove(e){const t=this.infosByEventHandlerId[e];if(t){delete this.infosByEventHandlerId[e];const n=c(t.eventName);0==--this.countByEventName[n]&&(delete this.countByEventName[n],document.removeEventListener(n,this.globalListener))}return t}handleEventNameAliasAdded(e,t){if(this.countByEventName.hasOwnProperty(e)){const n=this.countByEventName[e];delete this.countByEventName[e],document.removeEventListener(e,this.globalListener),this.addGlobalListener(t),this.countByEventName[t]+=n-1}}}class B{constructor(){this.handlers={},this.preventDefaultFlags=null,this.stopPropagationFlags=null}getHandler(e){return this.handlers.hasOwnProperty(e)?this.handlers[e]:null}setHandler(e,t){this.handlers[e]=t}removeHandler(e){delete this.handlers[e]}preventDefault(e,t){return void 0!==t&&(this.preventDefaultFlags=this.preventDefaultFlags||{},this.preventDefaultFlags[e]=t),!!this.preventDefaultFlags&&this.preventDefaultFlags[e]}stopPropagation(e,t){return void 0!==t&&(this.stopPropagationFlags=this.stopPropagationFlags||{},this.stopPropagationFlags[e]=t),!!this.stopPropagationFlags&&this.stopPropagationFlags[e]}}function F(e){const t={};return e.forEach((e=>{t[e]=!0})),t}const T=Y("_blazorLogicalChildren"),M=Y("_blazorLogicalParent"),j=Y("_blazorLogicalEnd");function L(e,t){if(e.childNodes.length>0&&!t)throw new Error("New logical elements must start empty, or allowExistingContents must be true");return T in e||(e[T]=[]),e}function P(e,t){const n=document.createComment("!");return x(n,e,t),n}function x(e,t,n){const r=e;if(e instanceof Comment&&z(r)&&z(r).length>0)throw new Error("Not implemented: inserting non-empty logical container");if($(r))throw new Error("Not implemented: moving existing logical children");const o=z(t);if(n0;)H(n,0)}const r=n;r.parentNode.removeChild(r)}function $(e){return e[M]||null}function J(e,t){return z(e)[t]}function U(e){var t=W(e);return"http://www.w3.org/2000/svg"===t.namespaceURI&&"foreignObject"!==t.tagName}function z(e){return e[T]}function G(e,t){const n=z(e);t.forEach((e=>{e.moveRangeStart=n[e.fromSiblingIndex],e.moveRangeEnd=X(e.moveRangeStart)})),t.forEach((t=>{const r=t.moveToBeforeMarker=document.createComment("marker"),o=n[t.toSiblingIndex+1];o?o.parentNode.insertBefore(r,o):V(r,e)})),t.forEach((e=>{const t=e.moveToBeforeMarker,n=t.parentNode,r=e.moveRangeStart,o=e.moveRangeEnd;let s=r;for(;s;){const e=s.nextSibling;if(n.insertBefore(s,t),s===o)break;s=e}n.removeChild(t)})),t.forEach((e=>{n[e.toSiblingIndex]=e.moveRangeStart}))}function W(e){if(e instanceof Element||e instanceof DocumentFragment)return e;if(e instanceof Comment)return e.parentNode;throw new Error("Not a valid logical element")}function K(e){const t=z($(e));return t[Array.prototype.indexOf.call(t,e)+1]||null}function V(e,t){if(t instanceof Element||t instanceof DocumentFragment)t.appendChild(e);else{if(!(t instanceof Comment))throw new Error(`Cannot append node because the parent is not a valid logical element. Parent: ${t}`);{const n=K(t);n?n.parentNode.insertBefore(e,n):V(e,$(t))}}}function X(e){if(e instanceof Element||e instanceof DocumentFragment)return e;const t=K(e);if(t)return t.previousSibling;{const t=$(e);return t instanceof Element||t instanceof DocumentFragment?t.lastChild:X(t)}}function Y(e){return"function"==typeof Symbol?Symbol():e}function q(e){return`_bl_${e}`}e.attachReviver(((e,t)=>t&&"object"==typeof t&&t.hasOwnProperty("__internalId")&&"string"==typeof t.__internalId?function(e){const t=`[${q(e)}]`;return document.querySelector(t)}(t.__internalId):t));const Z="_blazorDeferredValue",Q=document.createElement("template"),ee=document.createElementNS("http://www.w3.org/2000/svg","g"),te={},ne="__internal_",re="preventDefault_",oe="stopPropagation_";class se{constructor(e){this.rootComponentIds=new Set,this.childComponentLocations={},this.eventDelegator=new k(e),this.eventDelegator.notifyAfterClick((e=>{if(!he)return;if(0!==e.button||function(e){return e.ctrlKey||e.shiftKey||e.altKey||e.metaKey}(e))return;if(e.defaultPrevented)return;const t=function(e){const t=!window._blazorDisableComposedPath&&e.composedPath&&e.composedPath();if(t){for(let e=0;eve(!1))))},enableNavigationInterception:function(){he=!0},navigateTo:be,getBaseURI:()=>document.baseURI,getLocationHref:()=>location.href};function be(e,t,n=!1){const r=_e(e),o=t instanceof Object?t:{forceLoad:t,replaceHistoryEntry:n};!o.forceLoad&&Ne(r)?we(r,!1,o.replaceHistoryEntry):function(e,t){if(location.href===e){const t=e+"?";history.replaceState(null,"",t),location.replace(e)}else t?location.replace(e):location.href=e}(e,o.replaceHistoryEntry)}function we(e,t,n){fe=!0,n?history.replaceState(null,"",e):history.pushState(null,"",e),ve(t)}async function ve(e){ye&&await ye(location.href,e)}let Ee;function _e(e){return Ee=Ee||document.createElement("a"),Ee.href=e,Ee.href}function Ie(e,t){return e?e.tagName===t?e:Ie(e.parentElement,t):null}function Ne(e){const t=(n=document.baseURI).substr(0,n.lastIndexOf("/")+1);var n;return e.startsWith(t)}const Ce={focus:function(e,t){if(e instanceof HTMLElement)e.focus({preventScroll:t});else{if(!(e instanceof SVGElement))throw new Error("Unable to focus an invalid element.");if(!e.hasAttribute("tabindex"))throw new Error("Unable to focus an SVG element that does not have a tabindex.");e.focus({preventScroll:t})}},focusBySelector:function(e){const t=document.querySelector(e);t&&(t.hasAttribute("tabindex")||(t.tabIndex=-1),t.focus())}},Ae={init:function(e,t,n,r=50){const o=Re(t);(o||document.documentElement).style.overflowAnchor="none";const s=document.createRange();u(n.parentElement)&&(t.style.display="table-row",n.style.display="table-row");const a=new IntersectionObserver((function(r){r.forEach((r=>{var o;if(!r.isIntersecting)return;s.setStartAfter(t),s.setEndBefore(n);const a=s.getBoundingClientRect().height,i=null===(o=r.rootBounds)||void 0===o?void 0:o.height;r.target===t?e.invokeMethodAsync("OnSpacerBeforeVisible",r.intersectionRect.top-r.boundingClientRect.top,a,i):r.target===n&&n.offsetHeight>0&&e.invokeMethodAsync("OnSpacerAfterVisible",r.boundingClientRect.bottom-r.intersectionRect.bottom,a,i)}))}),{root:o,rootMargin:`${r}px`});a.observe(t),a.observe(n);const i=l(t),c=l(n);function l(e){const t={attributes:!0},n=new MutationObserver(((n,r)=>{u(e.parentElement)&&(r.disconnect(),e.style.display="table-row",r.observe(e,t)),a.unobserve(e),a.observe(e)}));return n.observe(e,t),n}function u(e){return null!==e&&(e instanceof HTMLTableElement&&""===e.style.display||"table"===e.style.display||e instanceof HTMLTableSectionElement&&""===e.style.display||"table-row-group"===e.style.display)}Se[e._id]={intersectionObserver:a,mutationObserverBefore:i,mutationObserverAfter:c}},dispose:function(e){const t=Se[e._id];t&&(t.intersectionObserver.disconnect(),t.mutationObserverBefore.disconnect(),t.mutationObserverAfter.disconnect(),e.dispose(),delete Se[e._id])}},Se={};function Re(e){return e?"visible"!==getComputedStyle(e).overflowY?e:Re(e.parentElement):null}const Oe={getAndRemoveExistingTitle:function(){var e;const t=document.getElementsByTagName("title");if(0===t.length)return null;let n=null;for(let r=t.length-1;r>=0;r--){const o=t[r],s=o.previousSibling;s instanceof Comment&&null!==$(s)||(null===n&&(n=o.textContent),null===(e=o.parentNode)||void 0===e||e.removeChild(o))}return n}},ke={init:function(e,t){t._blazorInputFileNextFileId=0,t.addEventListener("click",(function(){t.value=""})),t.addEventListener("change",(function(){t._blazorFilesById={};const n=Array.prototype.map.call(t.files,(function(e){const n={id:++t._blazorInputFileNextFileId,lastModified:new Date(e.lastModified).toISOString(),name:e.name,size:e.size,contentType:e.type,readPromise:void 0,arrayBuffer:void 0,blob:e};return t._blazorFilesById[n.id]=n,n}));e.invokeMethodAsync("NotifyChange",n)}))},toImageFile:async function(e,t,n,r,o){const s=De(e,t),a=await new Promise((function(e){const t=new Image;t.onload=function(){URL.revokeObjectURL(t.src),e(t)},t.onerror=function(){t.onerror=null,URL.revokeObjectURL(t.src)},t.src=URL.createObjectURL(s.blob)})),i=await new Promise((function(e){var t;const s=Math.min(1,r/a.width),i=Math.min(1,o/a.height),c=Math.min(s,i),l=document.createElement("canvas");l.width=Math.round(a.width*c),l.height=Math.round(a.height*c),null===(t=l.getContext("2d"))||void 0===t||t.drawImage(a,0,0,l.width,l.height),l.toBlob(e,n)})),c={id:++e._blazorInputFileNextFileId,lastModified:s.lastModified,name:s.name,size:(null==i?void 0:i.size)||0,contentType:n,blob:i||s.blob};return e._blazorFilesById[c.id]=c,c},readFileData:async function(e,t){return De(e,t).blob}};function De(e,t){const n=e._blazorFilesById[t];if(!n)throw new Error(`There is no file with ID ${t}. The file list may have changed.`);return n}const Be=new Map,Fe={navigateTo:be,registerCustomEventType:function(e,t){if(!t)throw new Error("The options parameter is required.");if(o.has(e))throw new Error(`The event '${e}' is already registered.`);if(t.browserEventName){const n=s.get(t.browserEventName);n?n.push(e):s.set(t.browserEventName,[e]),a.forEach((n=>n(e,t.browserEventName)))}o.set(e,t)},rootComponents:g,_internal:{navigationManager:ge,domWrapper:Ce,Virtualize:Ae,PageTitle:Oe,InputFile:ke,getJSDataStreamChunk:async function(e,t,n){return e instanceof Blob?await async function(e,t,n){const r=e.slice(t,t+n),o=await r.arrayBuffer();return new Uint8Array(o)}(e,t,n):function(e,t,n){return new Uint8Array(e.buffer,e.byteOffset+t,n)}(e,t,n)},receiveDotNetDataStream:function(t,n,r,o){let s=Be.get(t);if(!s){const n=new ReadableStream({start(e){Be.set(t,e),s=e}});e.jsCallDispatcher.supplyDotNetStream(t,n)}o?(s.error(o),Be.delete(t)):0===r?(s.close(),Be.delete(t)):s.enqueue(n.length===r?n:n.subarray(0,r))},attachWebRendererInterop:function(t,n,r,o){if(E.has(t))throw new Error(`Interop methods are already registered for renderer ${t}`);E.set(t,n),Object.keys(r).length>0&&function(t,n,r){if(h)throw new Error("Dynamic root components have already been enabled.");h=t,p=n;for(const[t,o]of Object.entries(r)){const r=e.jsCallDispatcher.findJSFunction(t,0);for(const e of o)r(e,n[e])}}(C(t),r,o),_()}}};let Te;function Me(e){return Te=e,Te}window.Blazor=Fe;const je=window.chrome&&navigator.userAgent.indexOf("Edge")<0;let Le=!1,Pe=!1;function xe(){return(Le||Pe)&&je}let He=!1;async function $e(){let e=document.querySelector("#blazor-error-ui");e&&(e.style.display="block"),He||(He=!0,document.querySelectorAll("#blazor-error-ui .reload").forEach((e=>{e.onclick=function(e){location.reload(),e.preventDefault()}})),document.querySelectorAll("#blazor-error-ui .dismiss").forEach((e=>{e.onclick=function(e){const t=document.querySelector("#blazor-error-ui");t&&(t.style.display="none"),e.preventDefault()}})))}class Je{constructor(e,t){this.bootConfig=e,this.applicationEnvironment=t}static async initAsync(e,t){const n=void 0!==e?e("manifest","blazor.boot.json","_framework/blazor.boot.json",""):a("_framework/blazor.boot.json"),r=n instanceof Promise?await n:await a(null!=n?n:"_framework/blazor.boot.json"),o=t||r.headers.get("Blazor-Environment")||"Production",s=await r.json();return s.modifiableAssemblies=r.headers.get("DOTNET-MODIFIABLE-ASSEMBLIES"),s.aspnetCoreBrowserTools=r.headers.get("ASPNETCORE-BROWSER-TOOLS"),new Je(s,o);async function a(e){return fetch(e,{method:"GET",credentials:"include",cache:"no-cache"})}}}var Ue;let ze;!function(e){e[e.Sharded=0]="Sharded",e[e.All=1]="All",e[e.Invariant=2]="Invariant"}(Ue||(Ue={}));const Ge=Math.pow(2,32),We=Math.pow(2,21)-1;let Ke=null;function Ve(e){return Module.HEAP32[e>>2]}const Xe={start:function(t){return new Promise(((n,r)=>{(function(e){Le=!!e.bootConfig.resources.pdb,Pe=e.bootConfig.debugBuild;const t=navigator.platform.match(/^Mac/i)?"Cmd":"Alt";xe()&&console.info(`Debugging hotkey: Shift+${t}+D (when application has focus)`),document.addEventListener("keydown",(e=>{e.shiftKey&&(e.metaKey||e.altKey)&&"KeyD"===e.code&&(Pe||Le?je?function(){const e=document.createElement("a");e.href=`_framework/debug?url=${encodeURIComponent(location.href)}`,e.target="_blank",e.rel="noopener noreferrer",e.click()}():console.error("Currently, only Microsoft Edge (80+), or Google Chrome, are supported for debugging."):console.error("Cannot start debugging, because the application was not compiled with debugging enabled."))}))})(t),window.Browser={init:()=>{}},function(o){const s=document.createElement("script");window.__wasmmodulecallback__=()=>{window.Module=function(t,n,r){const o=t.bootConfig.resources,s=window.Module||{},a=["DEBUGGING ENABLED"];s.print=e=>a.indexOf(e)<0&&console.log(e),s.printErr=e=>{console.error(e),$e()},s.preRun=s.preRun||[],s.postRun=s.postRun||[],s.preloadPlugins=[];const i="dotnet.wasm",c=t.loadResources(o.assembly,(e=>`_framework/${e}`),"assembly"),l=t.loadResources(o.pdb||{},(e=>`_framework/${e}`),"pdb"),u=t.loadResource(i,"_framework/dotnet.wasm",t.bootConfig.resources.runtime["dotnet.wasm"],"dotnetwasm"),d="dotnet.timezones.blat";let f,m;if(t.bootConfig.resources.runtime.hasOwnProperty(d)&&(f=t.loadResource(d,"_framework/dotnet.timezones.blat",t.bootConfig.resources.runtime["dotnet.timezones.blat"],"globalization")),t.bootConfig.icuDataMode!=Ue.Invariant){const e=t.startOptions.applicationCulture||navigator.languages&&navigator.languages[0],n=function(e,t){if(!t||e.icuDataMode===Ue.All)return"icudt.dat";const n=t.split("-")[0];return["en","fr","it","de","es"].includes(n)?"icudt_EFIGS.dat":["zh","ko","ja"].includes(n)?"icudt_CJK.dat":"icudt_no_CJK.dat"}(t.bootConfig,e);m=t.loadResource(n,`_framework/${n}`,t.bootConfig.resources.runtime[n],"globalization")}return s.instantiateWasm=(e,t)=>((async()=>{let n;try{const t=await u;n=await async function(e,t){if("function"==typeof WebAssembly.instantiateStreaming)try{return(await WebAssembly.instantiateStreaming(e.response,t)).instance}catch(e){console.info("Streaming compilation failed. Falling back to ArrayBuffer instantiation. ",e)}const n=await e.response.then((e=>e.arrayBuffer()));return(await WebAssembly.instantiate(n,t)).instance}(t,e)}catch(e){throw s.printErr(e.toString()),e}t(n)})(),[]),s.onRuntimeInitialized=()=>{m||MONO.mono_wasm_setenv("DOTNET_SYSTEM_GLOBALIZATION_INVARIANT","1")},s.preRun.push((()=>{ze=cwrap("mono_wasm_add_assembly",null,["string","number","number"]),MONO.loaded_files=[],f&&async function(e){const t="blazor:timezonedata";addRunDependency(t);const n=await e.response,r=await n.arrayBuffer();Module.FS_createPath("/","usr",!0,!0),Module.FS_createPath("/usr/","share",!0,!0),Module.FS_createPath("/usr/share/","zoneinfo",!0,!0),MONO.mono_wasm_load_data_archive(new Uint8Array(r),"/usr/share/zoneinfo/"),removeRunDependency(t)}(f),m&&async function(e){const t="blazor:icudata";addRunDependency(t);const n=await e.response,r=new Uint8Array(await n.arrayBuffer()),o=MONO.mono_wasm_load_bytes_into_heap(r);if(!MONO.mono_wasm_load_icu_data(o))throw new Error("Error loading ICU asset.");removeRunDependency(t)}(m),c.forEach((e=>h(e,et(e.name,".dll")))),l.forEach((e=>h(e,e.name))),Fe._internal.dotNetCriticalError=e=>{s.printErr(BINDING.conv_string(e)||"(null)")},Fe._internal.getSatelliteAssemblies=e=>{const n=BINDING.mono_array_to_js_array(e),r=t.bootConfig.resources.satelliteResources;if(t.startOptions.applicationCulture||navigator.languages&&navigator.languages[0],r){const e=Promise.all(n.filter((e=>r.hasOwnProperty(e))).map((e=>t.loadResources(r[e],(e=>`_framework/${e}`),"assembly"))).reduce(((e,t)=>e.concat(t)),new Array).map((async e=>(await e.response).arrayBuffer())));return BINDING.js_to_mono_obj(e.then((e=>(e.length&&(Fe._internal.readSatelliteAssemblies=()=>{const t=BINDING.mono_obj_array_new(e.length);for(var n=0;n{const r=BINDING.mono_array_to_js_array(n),o=t.bootConfig.resources.lazyAssembly;if(!o)throw new Error("No assemblies have been marked as lazy-loadable. Use the 'BlazorWebAssemblyLazyLoad' item group in your project file to enable lazy loading an assembly.");var s=r.filter((e=>o.hasOwnProperty(e)));if(s.length!=r.length){var a=r.filter((e=>!s.includes(e)));throw new Error(`${a.join()} must be marked with 'BlazorWebAssemblyLazyLoad' item group in your project file to allow lazy-loading.`)}let i;if(xe()){const e=t.bootConfig.resources.pdb,n=s.map((e=>et(e,".pdb")));e&&(i=Promise.all(n.map((e=>o.hasOwnProperty(e)?t.loadResource(e,`_framework/${e}`,o[e],"pdb"):null)).map((async e=>e?(await e.response).arrayBuffer():null))))}const c=Promise.all(s.map((e=>t.loadResource(e,`_framework/${e}`,o[e],"assembly"))).map((async e=>(await e.response).arrayBuffer())));return BINDING.js_to_mono_obj(Promise.all([c,i]).then((t=>(e.assemblies=t[0],e.pdbs=t[1],e.assemblies.length&&(Fe._internal.readLazyAssemblies=()=>{const{assemblies:t}=e;if(!t)return BINDING.mono_obj_array_new(0);const n=BINDING.mono_obj_array_new(t.length);for(let e=0;e{const{assemblies:t,pdbs:n}=e;if(!t)return BINDING.mono_obj_array_new(0);const r=BINDING.mono_obj_array_new(t.length);for(let e=0;e{t.bootConfig.debugBuild&&t.bootConfig.cacheBootResources&&t.logToConsole(),t.purgeUnusedCacheEntriesAsync(),t.bootConfig.icuDataMode===Ue.Sharded&&(MONO.mono_wasm_setenv("__BLAZOR_SHARDED_ICU","1"),t.startOptions.applicationCulture&&MONO.mono_wasm_setenv("LANG",`${t.startOptions.applicationCulture}.UTF-8`));let r="UTC";try{r=Intl.DateTimeFormat().resolvedOptions().timeZone}catch{}MONO.mono_wasm_setenv("TZ",r||"UTC"),t.bootConfig.modifiableAssemblies&&MONO.mono_wasm_setenv("DOTNET_MODIFIABLE_ASSEMBLIES",t.bootConfig.modifiableAssemblies),t.bootConfig.aspnetCoreBrowserTools&&MONO.mono_wasm_setenv("__ASPNETCORE_BROWSER_TOOLS",t.bootConfig.aspnetCoreBrowserTools),cwrap("mono_wasm_load_runtime",null,["string","number"])("appBinDir",xe()?-1:0),MONO.mono_wasm_runtime_ready(),function(){const t=Ze("Microsoft.AspNetCore.Components.WebAssembly","Microsoft.AspNetCore.Components.WebAssembly.Services.DefaultWebAssemblyJSRuntime","InvokeDotNet"),n=Ze("Microsoft.AspNetCore.Components.WebAssembly","Microsoft.AspNetCore.Components.WebAssembly.Services.DefaultWebAssemblyJSRuntime","BeginInvokeDotNet"),r=Ze("Microsoft.AspNetCore.Components.WebAssembly","Microsoft.AspNetCore.Components.WebAssembly.Services.DefaultWebAssemblyJSRuntime","EndInvokeJS"),o=Ze("Microsoft.AspNetCore.Components.WebAssembly","Microsoft.AspNetCore.Components.WebAssembly.Services.DefaultWebAssemblyJSRuntime","NotifyByteArrayAvailable");e.attachDispatcher({beginInvokeDotNetFromJS:(e,t,r,o,s)=>{if(tt(),!o&&!t)throw new Error("Either assemblyName or dotNetObjectId must have a non null value.");const a=o?o.toString():t;n(e?e.toString():null,a,r,s)},endInvokeJSFromDotNet:(e,t,n)=>{r(n)},sendByteArray:(e,t)=>{Qe=t,o(e)},invokeDotNetFromJS:(e,n,r,o)=>(tt(),t(e||null,n,r?r.toString():null,o))})}(),n()})),s;async function h(e,t){const n=`blazor:${e.name}`;addRunDependency(n);try{const n=await e.response.then((e=>e.arrayBuffer())),r=new Uint8Array(n),s=Module._malloc(r.length);new Uint8Array(Module.HEAPU8.buffer,s,r.length).set(r),ze(t,s,r.length),MONO.loaded_files.push((o=e.url,Ye.href=o,Ye.href))}catch(e){return void r(e)}var o;removeRunDependency(n)}}(t,n,r),function(e){if("undefined"==typeof WebAssembly||!WebAssembly.validate)throw new Error("This browser does not support WebAssembly.");const t=Object.keys(e.bootConfig.resources.runtime).filter((e=>e.startsWith("dotnet.")&&e.endsWith(".js")))[0],n=e.bootConfig.resources.runtime[t],r=document.createElement("script");if(r.src=`_framework/${t}`,r.defer=!0,e.bootConfig.cacheBootResources&&(r.integrity=n,r.crossOrigin="anonymous"),e.startOptions.loadBootResource){const o="dotnetjs",s=e.startOptions.loadBootResource(o,t,r.src,n);if("string"==typeof s)r.src=s;else if(s)throw new Error(`For a ${o} resource, custom loaders must supply a URI string.`)}document.body.appendChild(r)}(t)},s.text="var Module; window.__wasmmodulecallback__(); delete window.__wasmmodulecallback__;",document.body.appendChild(s)}()}))},callEntryPoint:async function(e){const t=[[]];try{await BINDING.call_assembly_entry_point(e,t,"m")}catch(e){console.error(e),$e()}},toUint8Array:function(e){const t=qe(e),n=Ve(t),r=new Uint8Array(n);return r.set(Module.HEAPU8.subarray(t+4,t+4+n)),r},getArrayLength:function(e){return Ve(qe(e))},getArrayEntryPtr:function(e,t,n){return qe(e)+4+t*n},getObjectFieldsBaseAddress:function(e){return e+8},readInt16Field:function(e,t){return n=e+(t||0),Module.HEAP16[n>>1];var n},readInt32Field:function(e,t){return Ve(e+(t||0))},readUint64Field:function(e,t){return function(e){const t=e>>2,n=Module.HEAPU32[t+1];if(n>We)throw new Error(`Cannot read uint64 with high order part ${n}, because the result would exceed Number.MAX_SAFE_INTEGER.`);return n*Ge+Module.HEAPU32[t]}(e+(t||0))},readFloatField:function(e,t){return n=e+(t||0),Module.HEAPF32[n>>2];var n},readObjectField:function(e,t){return Ve(e+(t||0))},readStringField:function(e,t,n){const r=Ve(e+(t||0));if(0===r)return null;if(n){const e=BINDING.unbox_mono_obj(r);return"boolean"==typeof e?e?"":null:e}let o;return Ke?(o=Ke.stringCache.get(r),void 0===o&&(o=BINDING.conv_string(r),Ke.stringCache.set(r,o))):o=BINDING.conv_string(r),o},readStructField:function(e,t){return e+(t||0)},beginHeapLock:function(){return tt(),Ke=new nt,Ke},invokeWhenHeapUnlocked:function(e){Ke?Ke.enqueuePostReleaseAction(e):e()}},Ye=document.createElement("a");function qe(e){return e+12}function Ze(e,t,n){const r=`[${e}] ${t}:${n}`;return BINDING.bind_static_method(r)}let Qe=null;function et(e,t){const n=e.lastIndexOf(".");if(n<0)throw new Error(`No extension to replace in '${e}'`);return e.substr(0,n)+t}function tt(){if(Ke)throw new Error("Assertion failed - heap is currently locked")}class nt{constructor(){this.stringCache=new Map}enqueuePostReleaseAction(e){this.postReleaseActions||(this.postReleaseActions=[]),this.postReleaseActions.push(e)}release(){var e;if(Ke!==this)throw new Error("Trying to release a lock which isn't current");for(Ke=null;null===(e=this.postReleaseActions)||void 0===e?void 0:e.length;)this.postReleaseActions.shift()(),tt()}}class rt{constructor(e){this.batchAddress=e,this.arrayRangeReader=ot,this.arrayBuilderSegmentReader=st,this.diffReader=at,this.editReader=it,this.frameReader=ct}updatedComponents(){return Te.readStructField(this.batchAddress,0)}referenceFrames(){return Te.readStructField(this.batchAddress,ot.structLength)}disposedComponentIds(){return Te.readStructField(this.batchAddress,2*ot.structLength)}disposedEventHandlerIds(){return Te.readStructField(this.batchAddress,3*ot.structLength)}updatedComponentsEntry(e,t){return lt(e,t,at.structLength)}referenceFramesEntry(e,t){return lt(e,t,ct.structLength)}disposedComponentIdsEntry(e,t){const n=lt(e,t,4);return Te.readInt32Field(n)}disposedEventHandlerIdsEntry(e,t){const n=lt(e,t,8);return Te.readUint64Field(n)}}const ot={structLength:8,values:e=>Te.readObjectField(e,0),count:e=>Te.readInt32Field(e,4)},st={structLength:12,values:e=>{const t=Te.readObjectField(e,0),n=Te.getObjectFieldsBaseAddress(t);return Te.readObjectField(n,0)},offset:e=>Te.readInt32Field(e,4),count:e=>Te.readInt32Field(e,8)},at={structLength:4+st.structLength,componentId:e=>Te.readInt32Field(e,0),edits:e=>Te.readStructField(e,4),editsEntry:(e,t)=>lt(e,t,it.structLength)},it={structLength:20,editType:e=>Te.readInt32Field(e,0),siblingIndex:e=>Te.readInt32Field(e,4),newTreeIndex:e=>Te.readInt32Field(e,8),moveToSiblingIndex:e=>Te.readInt32Field(e,8),removedAttributeName:e=>Te.readStringField(e,16)},ct={structLength:36,frameType:e=>Te.readInt16Field(e,4),subtreeLength:e=>Te.readInt32Field(e,8),elementReferenceCaptureId:e=>Te.readStringField(e,16),componentId:e=>Te.readInt32Field(e,12),elementName:e=>Te.readStringField(e,16),textContent:e=>Te.readStringField(e,16),markupContent:e=>Te.readStringField(e,16),attributeName:e=>Te.readStringField(e,16),attributeValue:e=>Te.readStringField(e,24,!0),attributeEventHandlerId:e=>Te.readUint64Field(e,8)};function lt(e,t,n){return Te.getArrayEntryPtr(e,t,n)}class ut{constructor(e,t,n){this.bootConfig=e,this.cacheIfUsed=t,this.startOptions=n,this.usedCacheKeys={},this.networkLoads={},this.cacheLoads={}}static async initAsync(e,t){const n=await async function(e){if(!e.cacheBootResources||"undefined"==typeof caches)return null;if(!1===window.isSecureContext)return null;const t=`blazor-resources-${document.baseURI.substring(document.location.origin.length)}`;try{return await caches.open(t)||null}catch{return null}}(e);return new ut(e,n,t)}loadResources(e,t,n){return Object.keys(e).map((r=>this.loadResource(r,t(r),e[r],n)))}loadResource(e,t,n,r){return{name:e,url:t,response:this.cacheIfUsed?this.loadResourceWithCaching(this.cacheIfUsed,e,t,n,r):this.loadResourceWithoutCaching(e,t,n,r)}}logToConsole(){const e=Object.values(this.cacheLoads),t=Object.values(this.networkLoads),n=dt(e),r=dt(t),o=n+r;if(0===o)return;const s=this.bootConfig.linkerEnabled?"%c":"\n%cThis application was built with linking (tree shaking) disabled. Published applications will be significantly smaller.";console.groupCollapsed(`%cblazor%c Loaded ${ft(o)} resources${s}`,"background: purple; color: white; padding: 1px 3px; border-radius: 3px;","font-weight: bold;","font-weight: normal;"),e.length&&(console.groupCollapsed(`Loaded ${ft(n)} resources from cache`),console.table(this.cacheLoads),console.groupEnd()),t.length&&(console.groupCollapsed(`Loaded ${ft(r)} resources from network`),console.table(this.networkLoads),console.groupEnd()),console.groupEnd()}async purgeUnusedCacheEntriesAsync(){const e=this.cacheIfUsed;if(e){const t=(await e.keys()).map((async t=>{t.url in this.usedCacheKeys||await e.delete(t)}));await Promise.all(t)}}async loadResourceWithCaching(e,t,n,r,o){if(!r||0===r.length)throw new Error("Content hash is required");const s=_e(`${n}.${r}`);let a;this.usedCacheKeys[s]=!0;try{a=await e.match(s)}catch{}if(a){const e=parseInt(a.headers.get("content-length")||"0");return this.cacheLoads[t]={responseBytes:e},a}{const a=await this.loadResourceWithoutCaching(t,n,r,o);return this.addToCacheAsync(e,t,s,a),a}}loadResourceWithoutCaching(e,t,n,r){if(this.startOptions.loadBootResource){const o=this.startOptions.loadBootResource(r,e,t,n);if(o instanceof Promise)return o;"string"==typeof o&&(t=o)}return fetch(t,{cache:"no-cache",integrity:this.bootConfig.cacheBootResources?n:void 0})}async addToCacheAsync(e,t,n,r){const o=await r.clone().arrayBuffer(),s=function(e){if("undefined"!=typeof performance)return performance.getEntriesByName(e)[0]}(r.url),a=s&&s.encodedBodySize||void 0;this.networkLoads[t]={responseBytes:a};const i=new Response(o,{headers:{"content-type":r.headers.get("content-type")||"","content-length":(a||r.headers.get("content-length")||"").toString()}});try{await e.put(n,i)}catch{}}}function dt(e){return e.reduce(((e,t)=>e+(t.responseBytes||0)),0)}function ft(e){return`${(e/1048576).toFixed(2)} MB`}class mt{static async initAsync(e){Fe._internal.getApplicationEnvironment=()=>BINDING.js_string_to_mono_string(e.applicationEnvironment);const t=await Promise.all((e.bootConfig.config||[]).filter((t=>"appsettings.json"===t||t===`appsettings.${e.applicationEnvironment}.json`)).map((async e=>({name:e,content:await n(e)}))));async function n(e){const t=await fetch(e,{method:"GET",credentials:"include",cache:"no-cache"});return new Uint8Array(await t.arrayBuffer())}Fe._internal.getConfig=e=>{const n=BINDING.conv_string(e),r=t.find((e=>e.name===n));return r?BINDING.js_typed_array_to_array(r.content):void 0}}}class ht{constructor(e){this.preregisteredComponents=e;const t={};for(let n=0;no.push(e))),e[M]=r,t&&(e[j]=t,L(t)),L(e)}(this.componentsById[t].start,this.componentsById[t].end)}getParameterValues(e){return this.componentsById[e].parameterValues}getParameterDefinitions(e){return this.componentsById[e].parameterDefinitions}getTypeName(e){return this.componentsById[e].typeName}getAssembly(e){return this.componentsById[e].assembly}getId(e){return this.preregisteredComponents[e].id}getCount(){return this.preregisteredComponents.length}}const pt=/^\s*Blazor-Component-State:(?[a-zA-Z0-9\+\/=]+)$/;function yt(e){var t;if(e.nodeType===Node.COMMENT_NODE){const n=e.textContent||"",r=pt.exec(n),o=r&&r.groups&&r.groups.state;return o&&(null===(t=e.parentNode)||void 0===t||t.removeChild(e)),o}if(!e.hasChildNodes())return;const n=e.childNodes;for(let e=0;e.*)$/);function wt(e,t){const n=e.currentElement;if(n&&n.nodeType===Node.COMMENT_NODE&&n.textContent){const r=bt.exec(n.textContent),o=r&&r.groups&&r.groups.descriptor;if(!o)return;try{const r=function(e){const t=JSON.parse(e),{type:n}=t;if("server"!==n&&"webassembly"!==n)throw new Error(`Invalid component type '${n}'.`);return t}(o);switch(t){case"webassembly":return function(e,t,n){const{type:r,assembly:o,typeName:s,parameterDefinitions:a,parameterValues:i,prerenderId:c}=e;if("webassembly"===r){if(!o)throw new Error("assembly must be defined when using a descriptor.");if(!s)throw new Error("typeName must be defined when using a descriptor.");if(c){const e=vt(c,n);if(!e)throw new Error(`Could not find an end component comment for '${t}'`);return{type:r,assembly:o,typeName:s,parameterDefinitions:a&&atob(a),parameterValues:i&&atob(i),start:t,prerenderId:c,end:e}}return{type:r,assembly:o,typeName:s,parameterDefinitions:a&&atob(a),parameterValues:i&&atob(i),start:t}}}(r,n,e);case"server":return function(e,t,n){const{type:r,descriptor:o,sequence:s,prerenderId:a}=e;if("server"===r){if(!o)throw new Error("descriptor must be defined when using a descriptor.");if(void 0===s)throw new Error("sequence must be defined when using a descriptor.");if(!Number.isInteger(s))throw new Error(`Error parsing the sequence '${s}' for component '${JSON.stringify(e)}'`);if(a){const e=vt(a,n);if(!e)throw new Error(`Could not find an end component comment for '${t}'`);return{type:r,sequence:s,descriptor:o,start:t,prerenderId:a,end:e}}return{type:r,sequence:s,descriptor:o,start:t}}}(r,n,e)}}catch(e){throw new Error(`Found malformed component comment at ${n.textContent}`)}}}function vt(e,t){for(;t.next()&&t.currentElement;){const n=t.currentElement;if(n.nodeType!==Node.COMMENT_NODE)continue;if(!n.textContent)continue;const r=bt.exec(n.textContent),o=r&&r[1];if(o)return Et(o,e),n}}function Et(e,t){const n=JSON.parse(e);if(1!==Object.keys(n).length)throw new Error(`Invalid end of component comment: '${e}'`);const r=n.prerenderId;if(!r)throw new Error(`End of component comment must have a value for the prerendered property: '${e}'`);if(r!==t)throw new Error(`End of component comment prerendered property must match the start comment prerender id: '${t}', '${r}'`)}class _t{constructor(e){this.childNodes=e,this.currentIndex=-1,this.length=e.length}next(){return this.currentIndex++,this.currentIndexasync function(e,n){const r=function(e){const t=document.baseURI;return t.endsWith("/")?`${t}${e}`:`${t}/${e}`}(n),o=await import(r);if(void 0===o)return;const{beforeStart:s,afterStarted:a}=o;return a&&e.afterStartedCallbacks.push(a),s?s(...t):void 0}(this,e))))}async invokeAfterStartedCallbacks(e){await I,await Promise.all(this.afterStartedCallbacks.map((t=>t(e))))}}let Ct=!1;async function At(t){if(Ct)throw new Error("Blazor has already started.");Ct=!0,function(){if(window.parent!==window&&!window.opener&&window.frameElement){const e=window.sessionStorage&&window.sessionStorage["Microsoft.AspNetCore.Components.WebAssembly.Authentication.CachedAuthSettings"],t=e&&JSON.parse(e);return t&&t.redirect_uri&&location.href.startsWith(t.redirect_uri)}return!1}()&&await new Promise((()=>{})),A=(e,t,n)=>{(function(e){return de[e]})(e).eventDelegator.getHandler(t)&&Xe.invokeWhenHeapUnlocked(n)},Fe._internal.applyHotReload=(t,n,r,o)=>{e.invokeMethod("Microsoft.AspNetCore.Components.WebAssembly","ApplyHotReloadDelta",t,n,r,o)},Fe._internal.getApplyUpdateCapabilities=()=>e.invokeMethod("Microsoft.AspNetCore.Components.WebAssembly","GetApplyUpdateCapabilities"),Fe._internal.invokeJSFromDotNet=St,Fe._internal.endInvokeDotNetFromJS=Rt,Fe._internal.receiveByteArray=Ot,Fe._internal.retrieveByteArray=kt;const n=Me(Xe);Fe.platform=n,Fe._internal.renderBatch=(e,t)=>{const n=Xe.beginHeapLock();try{!function(e,t){const n=de[e];if(!n)throw new Error(`There is no browser renderer with ID ${e}.`);const r=t.arrayRangeReader,o=t.updatedComponents(),s=r.values(o),a=r.count(o),i=t.referenceFrames(),c=r.values(i),l=t.diffReader;for(let e=0;eBINDING.js_string_to_mono_string(r()),Fe._internal.navigationManager.getUnmarshalledLocationHref=()=>BINDING.js_string_to_mono_string(o()),Fe._internal.navigationManager.listenForNavigationEvents((async(t,n)=>{await e.invokeMethodAsync("Microsoft.AspNetCore.Components.WebAssembly","NotifyLocationChanged",t,n)}));const s=null!=t?t:{},a=s.environment,i=Je.initAsync(s.loadBootResource,a),c=function(e,t){return function(e){const t=gt(e,"webassembly"),n=[];for(let e=0;ee.id-t.id))}(e)}(document),l=new ht(c);Fe._internal.registeredComponents={getRegisteredComponentsCount:()=>l.getCount(),getId:e=>l.getId(e),getAssembly:e=>BINDING.js_string_to_mono_string(l.getAssembly(e)),getTypeName:e=>BINDING.js_string_to_mono_string(l.getTypeName(e)),getParameterDefinitions:e=>BINDING.js_string_to_mono_string(l.getParameterDefinitions(e)||""),getParameterValues:e=>BINDING.js_string_to_mono_string(l.getParameterValues(e)||"")},Fe._internal.getPersistedState=()=>BINDING.js_string_to_mono_string(yt(document)||""),Fe._internal.attachRootComponentToElement=(e,t,n)=>{const r=l.resolveRegisteredElement(e);r?me(n,r,t,!1):function(e,t,n){const r="::after";let o=!1;if(e.endsWith(r))e=e.slice(0,-r.length),o=!0;else if(e.endsWith("::before"))throw new Error("The '::before' selector is not supported.");const s=function(e){const t=m.get(e);if(t)return m.delete(e),t}(e)||document.querySelector(e);if(!s)throw new Error(`Could not find any element matching selector '${e}'.`);me(n||0,L(s,!0),t,o)}(e,t,n)};const u=await i,d=await async function(e,t){const n=e.resources.libraryInitializers,r=new Nt;return n&&await r.importInitializersAsync(Object.keys(n),[t,e.resources.extensions]),r}(u.bootConfig,s),[f]=await Promise.all([ut.initAsync(u.bootConfig,s||{}),mt.initAsync(u)]);try{await n.start(f)}catch(e){throw new Error(`Failed to start platform. Reason: ${e}`)}n.callEntryPoint(f.bootConfig.entryAssembly),d.invokeAfterStartedCallbacks(Fe)}function St(t,n,r,o){const s=Xe.readStringField(t,0),a=Xe.readInt32Field(t,4),i=Xe.readStringField(t,8),c=Xe.readUint64Field(t,20);if(null!==i){const n=Xe.readUint64Field(t,12);if(0!==n)return e.jsCallDispatcher.beginInvokeJSFromDotNet(n,s,i,a,c),0;{const t=e.jsCallDispatcher.invokeJSFromDotNet(s,i,a,c);return null===t?0:BINDING.js_string_to_mono_string(t)}}{const t=e.jsCallDispatcher.findJSFunction(s,c).call(null,n,r,o);switch(a){case e.JSCallResultType.Default:return t;case e.JSCallResultType.JSObjectReference:return e.createJSObjectReference(t).__jsObjectId;case e.JSCallResultType.JSStreamReference:const n=e.createJSStreamReference(t),r=JSON.stringify(n);return BINDING.js_string_to_mono_string(r);case e.JSCallResultType.JSVoidResult:return null;default:throw new Error(`Invalid JS call result type '${a}'.`)}}}function Rt(t,n,r){const o=BINDING.conv_string(t),s=0!==n,a=BINDING.conv_string(r);e.jsCallDispatcher.endInvokeDotNetFromJS(o,s,a)}function Ot(t,n){const r=t,o=Xe.toUint8Array(n);e.jsCallDispatcher.receiveByteArray(r,o)}function kt(){if(null===Qe)throw new Error("Byte array not available for transfer");return BINDING.js_typed_array_to_array(Qe)}Fe.start=At,document&&document.currentScript&&"false"!==document.currentScript.getAttribute("autostart")&&At().catch((e=>{"undefined"!=typeof Module&&Module.printErr?Module.printErr(e):console.error(e)}))})(); \ No newline at end of file diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/blazor.webassembly.js.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/blazor.webassembly.js.gz new file mode 100644 index 00000000..41ac5bf0 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/blazor.webassembly.js.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.6.0.5.itaht6zf1c.js b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.6.0.5.itaht6zf1c.js new file mode 100755 index 00000000..20e2903d --- /dev/null +++ b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.6.0.5.itaht6zf1c.js @@ -0,0 +1,319 @@ +var Module=typeof Module!=="undefined"?Module:{};var moduleOverrides={};var key;for(key in Module){if(Module.hasOwnProperty(key)){moduleOverrides[key]=Module[key]}}var arguments_=[];var thisProgram="./this.program";var quit_=function(status,toThrow){throw toThrow};var ENVIRONMENT_IS_WEB=false;var ENVIRONMENT_IS_WORKER=false;var ENVIRONMENT_IS_NODE=false;var ENVIRONMENT_IS_SHELL=false;ENVIRONMENT_IS_WEB=typeof window==="object";ENVIRONMENT_IS_WORKER=typeof importScripts==="function";ENVIRONMENT_IS_NODE=typeof process==="object"&&typeof process.versions==="object"&&typeof process.versions.node==="string";ENVIRONMENT_IS_SHELL=!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_NODE&&!ENVIRONMENT_IS_WORKER;var scriptDirectory="";function locateFile(path){if(Module["locateFile"]){return Module["locateFile"](path,scriptDirectory)}return scriptDirectory+path}var read_,readAsync,readBinary,setWindowTitle;var nodeFS;var nodePath;if(ENVIRONMENT_IS_NODE){if(ENVIRONMENT_IS_WORKER){scriptDirectory=require("path").dirname(scriptDirectory)+"/"}else{scriptDirectory=__dirname+"/"}read_=function shell_read(filename,binary){if(!nodeFS)nodeFS=require("fs");if(!nodePath)nodePath=require("path");filename=nodePath["normalize"](filename);return nodeFS["readFileSync"](filename,binary?null:"utf8")};readBinary=function readBinary(filename){var ret=read_(filename,true);if(!ret.buffer){ret=new Uint8Array(ret)}assert(ret.buffer);return ret};if(process["argv"].length>1){thisProgram=process["argv"][1].replace(/\\/g,"/")}arguments_=process["argv"].slice(2);if(typeof module!=="undefined"){module["exports"]=Module}process["on"]("uncaughtException",function(ex){if(!(ex instanceof ExitStatus)){throw ex}});process["on"]("unhandledRejection",abort);quit_=function(status){process["exit"](status)};Module["inspect"]=function(){return"[Emscripten Module object]"}}else if(ENVIRONMENT_IS_SHELL){if(typeof read!="undefined"){read_=function shell_read(f){return read(f)}}readBinary=function readBinary(f){var data;if(typeof readbuffer==="function"){return new Uint8Array(readbuffer(f))}data=read(f,"binary");assert(typeof data==="object");return data};if(typeof scriptArgs!="undefined"){arguments_=scriptArgs}else if(typeof arguments!="undefined"){arguments_=arguments}if(typeof quit==="function"){quit_=function(status){quit(status)}}if(typeof print!=="undefined"){if(typeof console==="undefined")console={};console.log=print;console.warn=console.error=typeof printErr!=="undefined"?printErr:print}}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href}else if(typeof document!=="undefined"&&document.currentScript){scriptDirectory=document.currentScript.src}if(scriptDirectory.indexOf("blob:")!==0){scriptDirectory=scriptDirectory.substr(0,scriptDirectory.lastIndexOf("/")+1)}else{scriptDirectory=""}{read_=function(url){var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.send(null);return xhr.responseText};if(ENVIRONMENT_IS_WORKER){readBinary=function(url){var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.responseType="arraybuffer";xhr.send(null);return new Uint8Array(xhr.response)}}readAsync=function(url,onload,onerror){var xhr=new XMLHttpRequest;xhr.open("GET",url,true);xhr.responseType="arraybuffer";xhr.onload=function(){if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}onerror()};xhr.onerror=onerror;xhr.send(null)}}setWindowTitle=function(title){document.title=title}}else{}var out=Module["print"]||console.log.bind(console);var err=Module["printErr"]||console.warn.bind(console);for(key in moduleOverrides){if(moduleOverrides.hasOwnProperty(key)){Module[key]=moduleOverrides[key]}}moduleOverrides=null;if(Module["arguments"])arguments_=Module["arguments"];if(Module["thisProgram"])thisProgram=Module["thisProgram"];if(Module["quit"])quit_=Module["quit"];var STACK_ALIGN=16;function alignMemory(size,factor){if(!factor)factor=STACK_ALIGN;return Math.ceil(size/factor)*factor}function warnOnce(text){if(!warnOnce.shown)warnOnce.shown={};if(!warnOnce.shown[text]){warnOnce.shown[text]=1;err(text)}}function convertJsFunctionToWasm(func,sig){if(typeof WebAssembly.Function==="function"){var typeNames={"i":"i32","j":"i64","f":"f32","d":"f64"};var type={parameters:[],results:sig[0]=="v"?[]:[typeNames[sig[0]]]};for(var i=1;i>0]=value;break;case"i8":HEAP8[ptr>>0]=value;break;case"i16":HEAP16[ptr>>1]=value;break;case"i32":HEAP32[ptr>>2]=value;break;case"i64":tempI64=[value>>>0,(tempDouble=value,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[ptr>>2]=tempI64[0],HEAP32[ptr+4>>2]=tempI64[1];break;case"float":HEAPF32[ptr>>2]=value;break;case"double":HEAPF64[ptr>>3]=value;break;default:abort("invalid type for setValue: "+type)}}function getValue(ptr,type,noSafe){type=type||"i8";if(type.charAt(type.length-1)==="*")type="i32";switch(type){case"i1":return HEAP8[ptr>>0];case"i8":return HEAP8[ptr>>0];case"i16":return HEAP16[ptr>>1];case"i32":return HEAP32[ptr>>2];case"i64":return HEAP32[ptr>>2];case"float":return HEAPF32[ptr>>2];case"double":return HEAPF64[ptr>>3];default:abort("invalid type for getValue: "+type)}return null}var wasmMemory;var ABORT=false;var EXITSTATUS;function assert(condition,text){if(!condition){abort("Assertion failed: "+text)}}function getCFunc(ident){var func=Module["_"+ident];assert(func,"Cannot call unknown function "+ident+", make sure it is exported");return func}function ccall(ident,returnType,argTypes,args,opts){var toC={"string":function(str){var ret=0;if(str!==null&&str!==undefined&&str!==0){var len=(str.length<<2)+1;ret=stackAlloc(len);stringToUTF8(str,ret,len)}return ret},"array":function(arr){var ret=stackAlloc(arr.length);writeArrayToMemory(arr,ret);return ret}};function convertReturnValue(ret){if(returnType==="string")return UTF8ToString(ret);if(returnType==="boolean")return Boolean(ret);return ret}var func=getCFunc(ident);var cArgs=[];var stack=0;if(args){for(var i=0;i=endIdx))++endPtr;if(endPtr-idx>16&&heap.subarray&&UTF8Decoder){return UTF8Decoder.decode(heap.subarray(idx,endPtr))}else{var str="";while(idx>10,56320|ch&1023)}}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):""}function stringToUTF8Array(str,heap,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023}if(u<=127){if(outIdx>=endIdx)break;heap[outIdx++]=u}else if(u<=2047){if(outIdx+1>=endIdx)break;heap[outIdx++]=192|u>>6;heap[outIdx++]=128|u&63}else if(u<=65535){if(outIdx+2>=endIdx)break;heap[outIdx++]=224|u>>12;heap[outIdx++]=128|u>>6&63;heap[outIdx++]=128|u&63}else{if(outIdx+3>=endIdx)break;heap[outIdx++]=240|u>>18;heap[outIdx++]=128|u>>12&63;heap[outIdx++]=128|u>>6&63;heap[outIdx++]=128|u&63}}heap[outIdx]=0;return outIdx-startIdx}function stringToUTF8(str,outPtr,maxBytesToWrite){return stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite)}function lengthBytesUTF8(str){var len=0;for(var i=0;i=55296&&u<=57343)u=65536+((u&1023)<<10)|str.charCodeAt(++i)&1023;if(u<=127)++len;else if(u<=2047)len+=2;else if(u<=65535)len+=3;else len+=4}return len}var UTF16Decoder=typeof TextDecoder!=="undefined"?new TextDecoder("utf-16le"):undefined;function stringToUTF16(str,outPtr,maxBytesToWrite){if(maxBytesToWrite===undefined){maxBytesToWrite=2147483647}if(maxBytesToWrite<2)return 0;maxBytesToWrite-=2;var startPtr=outPtr;var numCharsToWrite=maxBytesToWrite>1]=codeUnit;outPtr+=2}HEAP16[outPtr>>1]=0;return outPtr-startPtr}function allocateUTF8(str){var size=lengthBytesUTF8(str)+1;var ret=_malloc(size);if(ret)stringToUTF8Array(str,HEAP8,ret,size);return ret}function writeArrayToMemory(array,buffer){HEAP8.set(array,buffer)}function writeAsciiToMemory(str,buffer,dontAddNull){for(var i=0;i>0]=str.charCodeAt(i)}if(!dontAddNull)HEAP8[buffer>>0]=0}function alignUp(x,multiple){if(x%multiple>0){x+=multiple-x%multiple}return x}var buffer,HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;function updateGlobalBufferAndViews(buf){buffer=buf;Module["HEAP8"]=HEAP8=new Int8Array(buf);Module["HEAP16"]=HEAP16=new Int16Array(buf);Module["HEAP32"]=HEAP32=new Int32Array(buf);Module["HEAPU8"]=HEAPU8=new Uint8Array(buf);Module["HEAPU16"]=HEAPU16=new Uint16Array(buf);Module["HEAPU32"]=HEAPU32=new Uint32Array(buf);Module["HEAPF32"]=HEAPF32=new Float32Array(buf);Module["HEAPF64"]=HEAPF64=new Float64Array(buf)}var INITIAL_MEMORY=Module["INITIAL_MEMORY"]||16777216;var wasmTable;var __ATPRERUN__=[];var __ATINIT__=[];var __ATMAIN__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;var runtimeExited=false;function preRun(){if(Module["preRun"]){if(typeof Module["preRun"]=="function")Module["preRun"]=[Module["preRun"]];while(Module["preRun"].length){addOnPreRun(Module["preRun"].shift())}}callRuntimeCallbacks(__ATPRERUN__)}function initRuntime(){runtimeInitialized=true;if(!Module["noFSInit"]&&!FS.init.initialized)FS.init();TTY.init();SOCKFS.root=FS.mount(SOCKFS,{},null);callRuntimeCallbacks(__ATINIT__)}function exitRuntime(){runtimeExited=true}function postRun(){if(Module["postRun"]){if(typeof Module["postRun"]=="function")Module["postRun"]=[Module["postRun"]];while(Module["postRun"].length){addOnPostRun(Module["postRun"].shift())}}callRuntimeCallbacks(__ATPOSTRUN__)}function addOnPreRun(cb){__ATPRERUN__.unshift(cb)}function addOnInit(cb){__ATINIT__.unshift(cb)}function addOnPostRun(cb){__ATPOSTRUN__.unshift(cb)}var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;function getUniqueRunDependency(id){return id}function addRunDependency(id){runDependencies++;if(Module["monitorRunDependencies"]){Module["monitorRunDependencies"](runDependencies)}}function removeRunDependency(id){runDependencies--;if(Module["monitorRunDependencies"]){Module["monitorRunDependencies"](runDependencies)}if(runDependencies==0){if(runDependencyWatcher!==null){clearInterval(runDependencyWatcher);runDependencyWatcher=null}if(dependenciesFulfilled){var callback=dependenciesFulfilled;dependenciesFulfilled=null;callback()}}}Module["preloadedImages"]={};Module["preloadedAudios"]={};function abort(what){if(Module["onAbort"]){Module["onAbort"](what)}what+="";err(what);ABORT=true;EXITSTATUS=1;what="abort("+what+"). Build with -s ASSERTIONS=1 for more info.";var e=new WebAssembly.RuntimeError(what);throw e}var dataURIPrefix="data:application/octet-stream;base64,";function isDataURI(filename){return filename.startsWith(dataURIPrefix)}function isFileURI(filename){return filename.startsWith("file://")}var wasmBinaryFile="dotnet.wasm";if(!isDataURI(wasmBinaryFile)){wasmBinaryFile=locateFile(wasmBinaryFile)}function getBinary(file){try{if(file==wasmBinaryFile&&wasmBinary){return new Uint8Array(wasmBinary)}if(readBinary){return readBinary(file)}else{throw"both async and sync fetching of the wasm failed"}}catch(err){abort(err)}}function getBinaryPromise(){if(!wasmBinary&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)){if(typeof fetch==="function"&&!isFileURI(wasmBinaryFile)){return fetch(wasmBinaryFile,{credentials:"same-origin"}).then(function(response){if(!response["ok"]){throw"failed to load wasm binary file at '"+wasmBinaryFile+"'"}return response["arrayBuffer"]()}).catch(function(){return getBinary(wasmBinaryFile)})}else{if(readAsync){return new Promise(function(resolve,reject){readAsync(wasmBinaryFile,function(response){resolve(new Uint8Array(response))},reject)})}}}return Promise.resolve().then(function(){return getBinary(wasmBinaryFile)})}function createWasm(){var info={"env":asmLibraryArg,"wasi_snapshot_preview1":asmLibraryArg};function receiveInstance(instance,module){var exports=instance.exports;Module["asm"]=exports;wasmMemory=Module["asm"]["memory"];updateGlobalBufferAndViews(wasmMemory.buffer);wasmTable=Module["asm"]["__indirect_function_table"];addOnInit(Module["asm"]["__wasm_call_ctors"]);removeRunDependency("wasm-instantiate")}addRunDependency("wasm-instantiate");function receiveInstantiationResult(result){receiveInstance(result["instance"])}function instantiateArrayBuffer(receiver){return getBinaryPromise().then(function(binary){var result=WebAssembly.instantiate(binary,info);return result}).then(receiver,function(reason){err("failed to asynchronously prepare wasm: "+reason);abort(reason)})}function instantiateAsync(){if(!wasmBinary&&typeof WebAssembly.instantiateStreaming==="function"&&!isDataURI(wasmBinaryFile)&&!isFileURI(wasmBinaryFile)&&typeof fetch==="function"){return fetch(wasmBinaryFile,{credentials:"same-origin"}).then(function(response){var result=WebAssembly.instantiateStreaming(response,info);return result.then(receiveInstantiationResult,function(reason){err("wasm streaming compile failed: "+reason);err("falling back to ArrayBuffer instantiation");return instantiateArrayBuffer(receiveInstantiationResult)})})}else{return instantiateArrayBuffer(receiveInstantiationResult)}}if(Module["instantiateWasm"]){try{var exports=Module["instantiateWasm"](info,receiveInstance);return exports}catch(e){err("Module.instantiateWasm callback failed with error: "+e);return false}}instantiateAsync();return{}}var tempDouble;var tempI64;var ASM_CONSTS={580212:function($0,$1){MONO.string_decoder.decode($0,$0+$1,true)},580263:function($0,$1,$2){var js_str=MONO.string_decoder.copy($0);try{var res=eval(js_str);setValue($2,0,"i32");if(res===null||res===undefined)return 0;else res=res.toString()}catch(e){res=e.toString();setValue($2,1,"i32");if(res===null||res===undefined)res="unknown exception";var stack=e.stack;if(stack){if(stack.startsWith(res))res=stack;else res+="\n"+stack}}var buff=Module._malloc((res.length+1)*2);stringToUTF16(res,buff,(res.length+1)*2);setValue($1,res.length,"i32");return buff},580818:function($0,$1,$2,$3,$4){var log_level=$0;var message=Module.UTF8ToString($1);var isFatal=$2;var domain=Module.UTF8ToString($3);var dataPtr=$4;if(MONO["logging"]&&MONO.logging["trace"]){MONO.logging.trace(domain,log_level,message,isFatal,dataPtr);return}if(isFatal)console.trace(message);switch(Module.UTF8ToString($0)){case"critical":case"error":console.error(message);break;case"warning":console.warn(message);break;case"message":console.log(message);break;case"info":console.info(message);break;case"debug":console.debug(message);break;default:console.log(message);break}},581442:function($0,$1){var level=$0;var message=Module.UTF8ToString($1);var namespace="Debugger.Debug";if(MONO["logging"]&&MONO.logging["debugger"]){MONO.logging.debugger(level,message);return}console.debug("%s: %s",namespace,message)},581682:function($0,$1,$2,$3){MONO.mono_wasm_add_dbg_command_received($0,$1,$2,$3)},581744:function($0,$1,$2,$3){MONO.mono_wasm_add_dbg_command_received($0,$1,$2,$3)},581806:function($0,$1,$2,$3){MONO.mono_wasm_add_dbg_command_received($0,$1,$2,$3)},581868:function($0,$1,$2,$3){MONO.mono_wasm_add_dbg_command_received($0,$1,$2,$3)},581930:function($0,$1){MONO.mono_wasm_add_dbg_command_received(1,0,$0,$1)}};function compile_function(snippet_ptr,len,is_exception){try{var data=MONO.string_decoder.decode(snippet_ptr,snippet_ptr+len);var wrapper="(function () { "+data+" })";var funcFactory=eval(wrapper);var func=funcFactory();if(typeof func!=="function"){throw new Error("Code must return an instance of a JavaScript function. "+"Please use `return` statement to return a function.")}setValue(is_exception,0,"i32");return BINDING.js_to_mono_obj(func,true)}catch(e){res=e.toString();setValue(is_exception,1,"i32");if(res===null||res===undefined)res="unknown exception";return BINDING.js_to_mono_obj(res,true)}}function callRuntimeCallbacks(callbacks){while(callbacks.length>0){var callback=callbacks.shift();if(typeof callback=="function"){callback(Module);continue}var func=callback.func;if(typeof func==="number"){if(callback.arg===undefined){wasmTable.get(func)()}else{wasmTable.get(func)(callback.arg)}}else{func(callback.arg===undefined?null:callback.arg)}}}function demangle(func){return func}function demangleAll(text){var regex=/\b_Z[\w\d_]+/g;return text.replace(regex,function(x){var y=demangle(x);return x===y?x:y+" ["+x+"]"})}function jsStackTrace(){var error=new Error;if(!error.stack){try{throw new Error}catch(e){error=e}if(!error.stack){return"(no stack trace available)"}}return error.stack.toString()}var runtimeKeepaliveCounter=0;function keepRuntimeAlive(){return noExitRuntime||runtimeKeepaliveCounter>0}function ___assert_fail(condition,filename,line,func){abort("Assertion failed: "+UTF8ToString(condition)+", at: "+[filename?UTF8ToString(filename):"unknown filename",line,func?UTF8ToString(func):"unknown function"])}var _emscripten_get_now;if(ENVIRONMENT_IS_NODE){_emscripten_get_now=function(){var t=process["hrtime"]();return t[0]*1e3+t[1]/1e6}}else if(typeof dateNow!=="undefined"){_emscripten_get_now=dateNow}else _emscripten_get_now=function(){return performance.now()};var _emscripten_get_now_is_monotonic=true;function setErrNo(value){HEAP32[___errno_location()>>2]=value;return value}function _clock_gettime(clk_id,tp){var now;if(clk_id===0){now=Date.now()}else if((clk_id===1||clk_id===4)&&_emscripten_get_now_is_monotonic){now=_emscripten_get_now()}else{setErrNo(28);return-1}HEAP32[tp>>2]=now/1e3|0;HEAP32[tp+4>>2]=now%1e3*1e3*1e3|0;return 0}function ___clock_gettime(a0,a1){return _clock_gettime(a0,a1)}var ExceptionInfoAttrs={DESTRUCTOR_OFFSET:0,REFCOUNT_OFFSET:4,TYPE_OFFSET:8,CAUGHT_OFFSET:12,RETHROWN_OFFSET:13,SIZE:16};function ___cxa_allocate_exception(size){return _malloc(size+ExceptionInfoAttrs.SIZE)+ExceptionInfoAttrs.SIZE}function ExceptionInfo(excPtr){this.excPtr=excPtr;this.ptr=excPtr-ExceptionInfoAttrs.SIZE;this.set_type=function(type){HEAP32[this.ptr+ExceptionInfoAttrs.TYPE_OFFSET>>2]=type};this.get_type=function(){return HEAP32[this.ptr+ExceptionInfoAttrs.TYPE_OFFSET>>2]};this.set_destructor=function(destructor){HEAP32[this.ptr+ExceptionInfoAttrs.DESTRUCTOR_OFFSET>>2]=destructor};this.get_destructor=function(){return HEAP32[this.ptr+ExceptionInfoAttrs.DESTRUCTOR_OFFSET>>2]};this.set_refcount=function(refcount){HEAP32[this.ptr+ExceptionInfoAttrs.REFCOUNT_OFFSET>>2]=refcount};this.set_caught=function(caught){caught=caught?1:0;HEAP8[this.ptr+ExceptionInfoAttrs.CAUGHT_OFFSET>>0]=caught};this.get_caught=function(){return HEAP8[this.ptr+ExceptionInfoAttrs.CAUGHT_OFFSET>>0]!=0};this.set_rethrown=function(rethrown){rethrown=rethrown?1:0;HEAP8[this.ptr+ExceptionInfoAttrs.RETHROWN_OFFSET>>0]=rethrown};this.get_rethrown=function(){return HEAP8[this.ptr+ExceptionInfoAttrs.RETHROWN_OFFSET>>0]!=0};this.init=function(type,destructor){this.set_type(type);this.set_destructor(destructor);this.set_refcount(0);this.set_caught(false);this.set_rethrown(false)};this.add_ref=function(){var value=HEAP32[this.ptr+ExceptionInfoAttrs.REFCOUNT_OFFSET>>2];HEAP32[this.ptr+ExceptionInfoAttrs.REFCOUNT_OFFSET>>2]=value+1};this.release_ref=function(){var prev=HEAP32[this.ptr+ExceptionInfoAttrs.REFCOUNT_OFFSET>>2];HEAP32[this.ptr+ExceptionInfoAttrs.REFCOUNT_OFFSET>>2]=prev-1;return prev===1}}function CatchInfo(ptr){this.free=function(){_free(this.ptr);this.ptr=0};this.set_base_ptr=function(basePtr){HEAP32[this.ptr>>2]=basePtr};this.get_base_ptr=function(){return HEAP32[this.ptr>>2]};this.set_adjusted_ptr=function(adjustedPtr){var ptrSize=4;HEAP32[this.ptr+ptrSize>>2]=adjustedPtr};this.get_adjusted_ptr=function(){var ptrSize=4;return HEAP32[this.ptr+ptrSize>>2]};this.get_exception_ptr=function(){var isPointer=___cxa_is_pointer_type(this.get_exception_info().get_type());if(isPointer){return HEAP32[this.get_base_ptr()>>2]}var adjusted=this.get_adjusted_ptr();if(adjusted!==0)return adjusted;return this.get_base_ptr()};this.get_exception_info=function(){return new ExceptionInfo(this.get_base_ptr())};if(ptr===undefined){this.ptr=_malloc(8);this.set_adjusted_ptr(0)}else{this.ptr=ptr}}var exceptionCaught=[];function exception_addRef(info){info.add_ref()}var uncaughtExceptionCount=0;function ___cxa_begin_catch(ptr){var catchInfo=new CatchInfo(ptr);var info=catchInfo.get_exception_info();if(!info.get_caught()){info.set_caught(true);uncaughtExceptionCount--}info.set_rethrown(false);exceptionCaught.push(catchInfo);exception_addRef(info);return catchInfo.get_exception_ptr()}var exceptionLast=0;function ___cxa_free_exception(ptr){return _free(new ExceptionInfo(ptr).ptr)}function exception_decRef(info){if(info.release_ref()&&!info.get_rethrown()){var destructor=info.get_destructor();if(destructor){wasmTable.get(destructor)(info.excPtr)}___cxa_free_exception(info.excPtr)}}function ___cxa_end_catch(){_setThrew(0);var catchInfo=exceptionCaught.pop();exception_decRef(catchInfo.get_exception_info());catchInfo.free();exceptionLast=0}function ___resumeException(catchInfoPtr){var catchInfo=new CatchInfo(catchInfoPtr);var ptr=catchInfo.get_base_ptr();if(!exceptionLast){exceptionLast=ptr}catchInfo.free();throw ptr}function ___cxa_find_matching_catch_3(){var thrown=exceptionLast;if(!thrown){setTempRet0(0);return 0|0}var info=new ExceptionInfo(thrown);var thrownType=info.get_type();var catchInfo=new CatchInfo;catchInfo.set_base_ptr(thrown);if(!thrownType){setTempRet0(0);return catchInfo.ptr|0}var typeArray=Array.prototype.slice.call(arguments);var stackTop=stackSave();var exceptionThrowBuf=stackAlloc(4);HEAP32[exceptionThrowBuf>>2]=thrown;for(var i=0;i>2];if(thrown!==adjusted){catchInfo.set_adjusted_ptr(adjusted)}setTempRet0(caughtType);return catchInfo.ptr|0}}stackRestore(stackTop);setTempRet0(thrownType);return catchInfo.ptr|0}function ___cxa_throw(ptr,type,destructor){var info=new ExceptionInfo(ptr);info.init(type,destructor);exceptionLast=ptr;uncaughtExceptionCount++;throw ptr}var PATH={splitPath:function(filename){var splitPathRe=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;return splitPathRe.exec(filename).slice(1)},normalizeArray:function(parts,allowAboveRoot){var up=0;for(var i=parts.length-1;i>=0;i--){var last=parts[i];if(last==="."){parts.splice(i,1)}else if(last===".."){parts.splice(i,1);up++}else if(up){parts.splice(i,1);up--}}if(allowAboveRoot){for(;up;up--){parts.unshift("..")}}return parts},normalize:function(path){var isAbsolute=path.charAt(0)==="/",trailingSlash=path.substr(-1)==="/";path=PATH.normalizeArray(path.split("/").filter(function(p){return!!p}),!isAbsolute).join("/");if(!path&&!isAbsolute){path="."}if(path&&trailingSlash){path+="/"}return(isAbsolute?"/":"")+path},dirname:function(path){var result=PATH.splitPath(path),root=result[0],dir=result[1];if(!root&&!dir){return"."}if(dir){dir=dir.substr(0,dir.length-1)}return root+dir},basename:function(path){if(path==="/")return"/";path=PATH.normalize(path);path=path.replace(/\/$/,"");var lastSlash=path.lastIndexOf("/");if(lastSlash===-1)return path;return path.substr(lastSlash+1)},extname:function(path){return PATH.splitPath(path)[3]},join:function(){var paths=Array.prototype.slice.call(arguments,0);return PATH.normalize(paths.join("/"))},join2:function(l,r){return PATH.normalize(l+"/"+r)}};function getRandomDevice(){if(typeof crypto==="object"&&typeof crypto["getRandomValues"]==="function"){var randomBuffer=new Uint8Array(1);return function(){crypto.getRandomValues(randomBuffer);return randomBuffer[0]}}else if(ENVIRONMENT_IS_NODE){try{var crypto_module=require("crypto");return function(){return crypto_module["randomBytes"](1)[0]}}catch(e){}}return function(){abort("randomDevice")}}var PATH_FS={resolve:function(){var resolvedPath="",resolvedAbsolute=false;for(var i=arguments.length-1;i>=-1&&!resolvedAbsolute;i--){var path=i>=0?arguments[i]:FS.cwd();if(typeof path!=="string"){throw new TypeError("Arguments to path.resolve must be strings")}else if(!path){return""}resolvedPath=path+"/"+resolvedPath;resolvedAbsolute=path.charAt(0)==="/"}resolvedPath=PATH.normalizeArray(resolvedPath.split("/").filter(function(p){return!!p}),!resolvedAbsolute).join("/");return(resolvedAbsolute?"/":"")+resolvedPath||"."},relative:function(from,to){from=PATH_FS.resolve(from).substr(1);to=PATH_FS.resolve(to).substr(1);function trim(arr){var start=0;for(;start=0;end--){if(arr[end]!=="")break}if(start>end)return[];return arr.slice(start,end-start+1)}var fromParts=trim(from.split("/"));var toParts=trim(to.split("/"));var length=Math.min(fromParts.length,toParts.length);var samePartsLength=length;for(var i=0;i0){result=buf.slice(0,bytesRead).toString("utf-8")}else{result=null}}else if(typeof window!="undefined"&&typeof window.prompt=="function"){result=window.prompt("Input: ");if(result!==null){result+="\n"}}else if(typeof readline=="function"){result=readline();if(result!==null){result+="\n"}}if(!result){return null}tty.input=intArrayFromString(result,true)}return tty.input.shift()},put_char:function(tty,val){if(val===null||val===10){out(UTF8ArrayToString(tty.output,0));tty.output=[]}else{if(val!=0)tty.output.push(val)}},flush:function(tty){if(tty.output&&tty.output.length>0){out(UTF8ArrayToString(tty.output,0));tty.output=[]}}},default_tty1_ops:{put_char:function(tty,val){if(val===null||val===10){err(UTF8ArrayToString(tty.output,0));tty.output=[]}else{if(val!=0)tty.output.push(val)}},flush:function(tty){if(tty.output&&tty.output.length>0){err(UTF8ArrayToString(tty.output,0));tty.output=[]}}}};function mmapAlloc(size){var alignedSize=alignMemory(size,65536);var ptr=_malloc(alignedSize);while(size=newCapacity)return;var CAPACITY_DOUBLING_MAX=1024*1024;newCapacity=Math.max(newCapacity,prevCapacity*(prevCapacity>>0);if(prevCapacity!=0)newCapacity=Math.max(newCapacity,256);var oldContents=node.contents;node.contents=new Uint8Array(newCapacity);if(node.usedBytes>0)node.contents.set(oldContents.subarray(0,node.usedBytes),0)},resizeFileStorage:function(node,newSize){if(node.usedBytes==newSize)return;if(newSize==0){node.contents=null;node.usedBytes=0}else{var oldContents=node.contents;node.contents=new Uint8Array(newSize);if(oldContents){node.contents.set(oldContents.subarray(0,Math.min(newSize,node.usedBytes)))}node.usedBytes=newSize}},node_ops:{getattr:function(node){var attr={};attr.dev=FS.isChrdev(node.mode)?node.id:1;attr.ino=node.id;attr.mode=node.mode;attr.nlink=1;attr.uid=0;attr.gid=0;attr.rdev=node.rdev;if(FS.isDir(node.mode)){attr.size=4096}else if(FS.isFile(node.mode)){attr.size=node.usedBytes}else if(FS.isLink(node.mode)){attr.size=node.link.length}else{attr.size=0}attr.atime=new Date(node.timestamp);attr.mtime=new Date(node.timestamp);attr.ctime=new Date(node.timestamp);attr.blksize=4096;attr.blocks=Math.ceil(attr.size/attr.blksize);return attr},setattr:function(node,attr){if(attr.mode!==undefined){node.mode=attr.mode}if(attr.timestamp!==undefined){node.timestamp=attr.timestamp}if(attr.size!==undefined){MEMFS.resizeFileStorage(node,attr.size)}},lookup:function(parent,name){throw FS.genericErrors[44]},mknod:function(parent,name,mode,dev){return MEMFS.createNode(parent,name,mode,dev)},rename:function(old_node,new_dir,new_name){if(FS.isDir(old_node.mode)){var new_node;try{new_node=FS.lookupNode(new_dir,new_name)}catch(e){}if(new_node){for(var i in new_node.contents){throw new FS.ErrnoError(55)}}}delete old_node.parent.contents[old_node.name];old_node.parent.timestamp=Date.now();old_node.name=new_name;new_dir.contents[new_name]=old_node;new_dir.timestamp=old_node.parent.timestamp;old_node.parent=new_dir},unlink:function(parent,name){delete parent.contents[name];parent.timestamp=Date.now()},rmdir:function(parent,name){var node=FS.lookupNode(parent,name);for(var i in node.contents){throw new FS.ErrnoError(55)}delete parent.contents[name];parent.timestamp=Date.now()},readdir:function(node){var entries=[".",".."];for(var key in node.contents){if(!node.contents.hasOwnProperty(key)){continue}entries.push(key)}return entries},symlink:function(parent,newname,oldpath){var node=MEMFS.createNode(parent,newname,511|40960,0);node.link=oldpath;return node},readlink:function(node){if(!FS.isLink(node.mode)){throw new FS.ErrnoError(28)}return node.link}},stream_ops:{read:function(stream,buffer,offset,length,position){var contents=stream.node.contents;if(position>=stream.node.usedBytes)return 0;var size=Math.min(stream.node.usedBytes-position,length);if(size>8&&contents.subarray){buffer.set(contents.subarray(position,position+size),offset)}else{for(var i=0;i0||position+length8){throw new FS.ErrnoError(32)}var parts=PATH.normalizeArray(path.split("/").filter(function(p){return!!p}),false);var current=FS.root;var current_path="/";for(var i=0;i40){throw new FS.ErrnoError(32)}}}}return{path:current_path,node:current}},getPath:function(node){var path;while(true){if(FS.isRoot(node)){var mount=node.mount.mountpoint;if(!path)return mount;return mount[mount.length-1]!=="/"?mount+"/"+path:mount+path}path=path?node.name+"/"+path:node.name;node=node.parent}},hashName:function(parentid,name){var hash=0;for(var i=0;i>>0)%FS.nameTable.length},hashAddNode:function(node){var hash=FS.hashName(node.parent.id,node.name);node.name_next=FS.nameTable[hash];FS.nameTable[hash]=node},hashRemoveNode:function(node){var hash=FS.hashName(node.parent.id,node.name);if(FS.nameTable[hash]===node){FS.nameTable[hash]=node.name_next}else{var current=FS.nameTable[hash];while(current){if(current.name_next===node){current.name_next=node.name_next;break}current=current.name_next}}},lookupNode:function(parent,name){var errCode=FS.mayLookup(parent);if(errCode){throw new FS.ErrnoError(errCode,parent)}var hash=FS.hashName(parent.id,name);for(var node=FS.nameTable[hash];node;node=node.name_next){var nodeName=node.name;if(node.parent.id===parent.id&&nodeName===name){return node}}return FS.lookup(parent,name)},createNode:function(parent,name,mode,rdev){var node=new FS.FSNode(parent,name,mode,rdev);FS.hashAddNode(node);return node},destroyNode:function(node){FS.hashRemoveNode(node)},isRoot:function(node){return node===node.parent},isMountpoint:function(node){return!!node.mounted},isFile:function(mode){return(mode&61440)===32768},isDir:function(mode){return(mode&61440)===16384},isLink:function(mode){return(mode&61440)===40960},isChrdev:function(mode){return(mode&61440)===8192},isBlkdev:function(mode){return(mode&61440)===24576},isFIFO:function(mode){return(mode&61440)===4096},isSocket:function(mode){return(mode&49152)===49152},flagModes:{"r":0,"r+":2,"w":577,"w+":578,"a":1089,"a+":1090},modeStringToFlags:function(str){var flags=FS.flagModes[str];if(typeof flags==="undefined"){throw new Error("Unknown file open mode: "+str)}return flags},flagsToPermissionString:function(flag){var perms=["r","w","rw"][flag&3];if(flag&512){perms+="w"}return perms},nodePermissions:function(node,perms){if(FS.ignorePermissions){return 0}if(perms.includes("r")&&!(node.mode&292)){return 2}else if(perms.includes("w")&&!(node.mode&146)){return 2}else if(perms.includes("x")&&!(node.mode&73)){return 2}return 0},mayLookup:function(dir){var errCode=FS.nodePermissions(dir,"x");if(errCode)return errCode;if(!dir.node_ops.lookup)return 2;return 0},mayCreate:function(dir,name){try{var node=FS.lookupNode(dir,name);return 20}catch(e){}return FS.nodePermissions(dir,"wx")},mayDelete:function(dir,name,isdir){var node;try{node=FS.lookupNode(dir,name)}catch(e){return e.errno}var errCode=FS.nodePermissions(dir,"wx");if(errCode){return errCode}if(isdir){if(!FS.isDir(node.mode)){return 54}if(FS.isRoot(node)||FS.getPath(node)===FS.cwd()){return 10}}else{if(FS.isDir(node.mode)){return 31}}return 0},mayOpen:function(node,flags){if(!node){return 44}if(FS.isLink(node.mode)){return 32}else if(FS.isDir(node.mode)){if(FS.flagsToPermissionString(flags)!=="r"||flags&512){return 31}}return FS.nodePermissions(node,FS.flagsToPermissionString(flags))},MAX_OPEN_FDS:4096,nextfd:function(fd_start,fd_end){fd_start=fd_start||0;fd_end=fd_end||FS.MAX_OPEN_FDS;for(var fd=fd_start;fd<=fd_end;fd++){if(!FS.streams[fd]){return fd}}throw new FS.ErrnoError(33)},getStream:function(fd){return FS.streams[fd]},createStream:function(stream,fd_start,fd_end){if(!FS.FSStream){FS.FSStream=function(){};FS.FSStream.prototype={object:{get:function(){return this.node},set:function(val){this.node=val}},isRead:{get:function(){return(this.flags&2097155)!==1}},isWrite:{get:function(){return(this.flags&2097155)!==0}},isAppend:{get:function(){return this.flags&1024}}}}var newStream=new FS.FSStream;for(var p in stream){newStream[p]=stream[p]}stream=newStream;var fd=FS.nextfd(fd_start,fd_end);stream.fd=fd;FS.streams[fd]=stream;return stream},closeStream:function(fd){FS.streams[fd]=null},chrdev_stream_ops:{open:function(stream){var device=FS.getDevice(stream.node.rdev);stream.stream_ops=device.stream_ops;if(stream.stream_ops.open){stream.stream_ops.open(stream)}},llseek:function(){throw new FS.ErrnoError(70)}},major:function(dev){return dev>>8},minor:function(dev){return dev&255},makedev:function(ma,mi){return ma<<8|mi},registerDevice:function(dev,ops){FS.devices[dev]={stream_ops:ops}},getDevice:function(dev){return FS.devices[dev]},getMounts:function(mount){var mounts=[];var check=[mount];while(check.length){var m=check.pop();mounts.push(m);check.push.apply(check,m.mounts)}return mounts},syncfs:function(populate,callback){if(typeof populate==="function"){callback=populate;populate=false}FS.syncFSRequests++;if(FS.syncFSRequests>1){err("warning: "+FS.syncFSRequests+" FS.syncfs operations in flight at once, probably just doing extra work")}var mounts=FS.getMounts(FS.root.mount);var completed=0;function doCallback(errCode){FS.syncFSRequests--;return callback(errCode)}function done(errCode){if(errCode){if(!done.errored){done.errored=true;return doCallback(errCode)}return}if(++completed>=mounts.length){doCallback(null)}}mounts.forEach(function(mount){if(!mount.type.syncfs){return done(null)}mount.type.syncfs(mount,populate,done)})},mount:function(type,opts,mountpoint){var root=mountpoint==="/";var pseudo=!mountpoint;var node;if(root&&FS.root){throw new FS.ErrnoError(10)}else if(!root&&!pseudo){var lookup=FS.lookupPath(mountpoint,{follow_mount:false});mountpoint=lookup.path;node=lookup.node;if(FS.isMountpoint(node)){throw new FS.ErrnoError(10)}if(!FS.isDir(node.mode)){throw new FS.ErrnoError(54)}}var mount={type:type,opts:opts,mountpoint:mountpoint,mounts:[]};var mountRoot=type.mount(mount);mountRoot.mount=mount;mount.root=mountRoot;if(root){FS.root=mountRoot}else if(node){node.mounted=mount;if(node.mount){node.mount.mounts.push(mount)}}return mountRoot},unmount:function(mountpoint){var lookup=FS.lookupPath(mountpoint,{follow_mount:false});if(!FS.isMountpoint(lookup.node)){throw new FS.ErrnoError(28)}var node=lookup.node;var mount=node.mounted;var mounts=FS.getMounts(mount);Object.keys(FS.nameTable).forEach(function(hash){var current=FS.nameTable[hash];while(current){var next=current.name_next;if(mounts.includes(current.mount)){FS.destroyNode(current)}current=next}});node.mounted=null;var idx=node.mount.mounts.indexOf(mount);node.mount.mounts.splice(idx,1)},lookup:function(parent,name){return parent.node_ops.lookup(parent,name)},mknod:function(path,mode,dev){var lookup=FS.lookupPath(path,{parent:true});var parent=lookup.node;var name=PATH.basename(path);if(!name||name==="."||name===".."){throw new FS.ErrnoError(28)}var errCode=FS.mayCreate(parent,name);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.mknod){throw new FS.ErrnoError(63)}return parent.node_ops.mknod(parent,name,mode,dev)},create:function(path,mode){mode=mode!==undefined?mode:438;mode&=4095;mode|=32768;return FS.mknod(path,mode,0)},mkdir:function(path,mode){mode=mode!==undefined?mode:511;mode&=511|512;mode|=16384;return FS.mknod(path,mode,0)},mkdirTree:function(path,mode){var dirs=path.split("/");var d="";for(var i=0;ithis.length-1||idx<0){return undefined}var chunkOffset=idx%this.chunkSize;var chunkNum=idx/this.chunkSize|0;return this.getter(chunkNum)[chunkOffset]};LazyUint8Array.prototype.setDataGetter=function LazyUint8Array_setDataGetter(getter){this.getter=getter};LazyUint8Array.prototype.cacheLength=function LazyUint8Array_cacheLength(){var xhr=new XMLHttpRequest;xhr.open("HEAD",url,false);xhr.send(null);if(!(xhr.status>=200&&xhr.status<300||xhr.status===304))throw new Error("Couldn't load "+url+". Status: "+xhr.status);var datalength=Number(xhr.getResponseHeader("Content-length"));var header;var hasByteServing=(header=xhr.getResponseHeader("Accept-Ranges"))&&header==="bytes";var usesGzip=(header=xhr.getResponseHeader("Content-Encoding"))&&header==="gzip";var chunkSize=1024*1024;if(!hasByteServing)chunkSize=datalength;var doXHR=function(from,to){if(from>to)throw new Error("invalid range ("+from+", "+to+") or no bytes requested!");if(to>datalength-1)throw new Error("only "+datalength+" bytes available! programmer error!");var xhr=new XMLHttpRequest;xhr.open("GET",url,false);if(datalength!==chunkSize)xhr.setRequestHeader("Range","bytes="+from+"-"+to);if(typeof Uint8Array!="undefined")xhr.responseType="arraybuffer";if(xhr.overrideMimeType){xhr.overrideMimeType("text/plain; charset=x-user-defined")}xhr.send(null);if(!(xhr.status>=200&&xhr.status<300||xhr.status===304))throw new Error("Couldn't load "+url+". Status: "+xhr.status);if(xhr.response!==undefined){return new Uint8Array(xhr.response||[])}else{return intArrayFromString(xhr.responseText||"",true)}};var lazyArray=this;lazyArray.setDataGetter(function(chunkNum){var start=chunkNum*chunkSize;var end=(chunkNum+1)*chunkSize-1;end=Math.min(end,datalength-1);if(typeof lazyArray.chunks[chunkNum]==="undefined"){lazyArray.chunks[chunkNum]=doXHR(start,end)}if(typeof lazyArray.chunks[chunkNum]==="undefined")throw new Error("doXHR failed!");return lazyArray.chunks[chunkNum]});if(usesGzip||!datalength){chunkSize=datalength=1;datalength=this.getter(0).length;chunkSize=datalength;out("LazyFiles on gzip forces download of the whole file when length is accessed")}this._length=datalength;this._chunkSize=chunkSize;this.lengthKnown=true};if(typeof XMLHttpRequest!=="undefined"){if(!ENVIRONMENT_IS_WORKER)throw"Cannot do synchronous binary XHRs outside webworkers in modern browsers. Use --embed-file or --preload-file in emcc";var lazyArray=new LazyUint8Array;Object.defineProperties(lazyArray,{length:{get:function(){if(!this.lengthKnown){this.cacheLength()}return this._length}},chunkSize:{get:function(){if(!this.lengthKnown){this.cacheLength()}return this._chunkSize}}});var properties={isDevice:false,contents:lazyArray}}else{var properties={isDevice:false,url:url}}var node=FS.createFile(parent,name,properties,canRead,canWrite);if(properties.contents){node.contents=properties.contents}else if(properties.url){node.contents=null;node.url=properties.url}Object.defineProperties(node,{usedBytes:{get:function(){return this.contents.length}}});var stream_ops={};var keys=Object.keys(node.stream_ops);keys.forEach(function(key){var fn=node.stream_ops[key];stream_ops[key]=function forceLoadLazyFile(){FS.forceLoadFile(node);return fn.apply(null,arguments)}});stream_ops.read=function stream_ops_read(stream,buffer,offset,length,position){FS.forceLoadFile(node);var contents=stream.node.contents;if(position>=contents.length)return 0;var size=Math.min(contents.length-position,length);if(contents.slice){for(var i=0;i>2]=stat.dev;HEAP32[buf+4>>2]=0;HEAP32[buf+8>>2]=stat.ino;HEAP32[buf+12>>2]=stat.mode;HEAP32[buf+16>>2]=stat.nlink;HEAP32[buf+20>>2]=stat.uid;HEAP32[buf+24>>2]=stat.gid;HEAP32[buf+28>>2]=stat.rdev;HEAP32[buf+32>>2]=0;tempI64=[stat.size>>>0,(tempDouble=stat.size,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[buf+40>>2]=tempI64[0],HEAP32[buf+44>>2]=tempI64[1];HEAP32[buf+48>>2]=4096;HEAP32[buf+52>>2]=stat.blocks;HEAP32[buf+56>>2]=stat.atime.getTime()/1e3|0;HEAP32[buf+60>>2]=0;HEAP32[buf+64>>2]=stat.mtime.getTime()/1e3|0;HEAP32[buf+68>>2]=0;HEAP32[buf+72>>2]=stat.ctime.getTime()/1e3|0;HEAP32[buf+76>>2]=0;tempI64=[stat.ino>>>0,(tempDouble=stat.ino,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[buf+80>>2]=tempI64[0],HEAP32[buf+84>>2]=tempI64[1];return 0},doMsync:function(addr,stream,len,flags,offset){var buffer=HEAPU8.slice(addr,addr+len);FS.msync(stream,buffer,offset,len,flags)},doMkdir:function(path,mode){path=PATH.normalize(path);if(path[path.length-1]==="/")path=path.substr(0,path.length-1);FS.mkdir(path,mode,0);return 0},doMknod:function(path,mode,dev){switch(mode&61440){case 32768:case 8192:case 24576:case 4096:case 49152:break;default:return-28}FS.mknod(path,mode,dev);return 0},doReadlink:function(path,buf,bufsize){if(bufsize<=0)return-28;var ret=FS.readlink(path);var len=Math.min(bufsize,lengthBytesUTF8(ret));var endChar=HEAP8[buf+len];stringToUTF8(ret,buf,bufsize+1);HEAP8[buf+len]=endChar;return len},doAccess:function(path,amode){if(amode&~7){return-28}var node;var lookup=FS.lookupPath(path,{follow:true});node=lookup.node;if(!node){return-44}var perms="";if(amode&4)perms+="r";if(amode&2)perms+="w";if(amode&1)perms+="x";if(perms&&FS.nodePermissions(node,perms)){return-2}return 0},doDup:function(path,flags,suggestFD){var suggest=FS.getStream(suggestFD);if(suggest)FS.close(suggest);return FS.open(path,flags,0,suggestFD,suggestFD).fd},doReadv:function(stream,iov,iovcnt,offset){var ret=0;for(var i=0;i>2];var len=HEAP32[iov+(i*8+4)>>2];var curr=FS.read(stream,HEAP8,ptr,len,offset);if(curr<0)return-1;ret+=curr;if(curr>2];var len=HEAP32[iov+(i*8+4)>>2];var curr=FS.write(stream,HEAP8,ptr,len,offset);if(curr<0)return-1;ret+=curr}return ret},varargs:undefined,get:function(){SYSCALLS.varargs+=4;var ret=HEAP32[SYSCALLS.varargs-4>>2];return ret},getStr:function(ptr){var ret=UTF8ToString(ptr);return ret},getStreamFromFD:function(fd){var stream=FS.getStream(fd);if(!stream)throw new FS.ErrnoError(8);return stream},get64:function(low,high){return low}};function ___sys_access(path,amode){try{path=SYSCALLS.getStr(path);return SYSCALLS.doAccess(path,amode)}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_chdir(path){try{path=SYSCALLS.getStr(path);FS.chdir(path);return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_chmod(path,mode){try{path=SYSCALLS.getStr(path);FS.chmod(path,mode);return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}var ERRNO_CODES={EPERM:63,ENOENT:44,ESRCH:71,EINTR:27,EIO:29,ENXIO:60,E2BIG:1,ENOEXEC:45,EBADF:8,ECHILD:12,EAGAIN:6,EWOULDBLOCK:6,ENOMEM:48,EACCES:2,EFAULT:21,ENOTBLK:105,EBUSY:10,EEXIST:20,EXDEV:75,ENODEV:43,ENOTDIR:54,EISDIR:31,EINVAL:28,ENFILE:41,EMFILE:33,ENOTTY:59,ETXTBSY:74,EFBIG:22,ENOSPC:51,ESPIPE:70,EROFS:69,EMLINK:34,EPIPE:64,EDOM:18,ERANGE:68,ENOMSG:49,EIDRM:24,ECHRNG:106,EL2NSYNC:156,EL3HLT:107,EL3RST:108,ELNRNG:109,EUNATCH:110,ENOCSI:111,EL2HLT:112,EDEADLK:16,ENOLCK:46,EBADE:113,EBADR:114,EXFULL:115,ENOANO:104,EBADRQC:103,EBADSLT:102,EDEADLOCK:16,EBFONT:101,ENOSTR:100,ENODATA:116,ETIME:117,ENOSR:118,ENONET:119,ENOPKG:120,EREMOTE:121,ENOLINK:47,EADV:122,ESRMNT:123,ECOMM:124,EPROTO:65,EMULTIHOP:36,EDOTDOT:125,EBADMSG:9,ENOTUNIQ:126,EBADFD:127,EREMCHG:128,ELIBACC:129,ELIBBAD:130,ELIBSCN:131,ELIBMAX:132,ELIBEXEC:133,ENOSYS:52,ENOTEMPTY:55,ENAMETOOLONG:37,ELOOP:32,EOPNOTSUPP:138,EPFNOSUPPORT:139,ECONNRESET:15,ENOBUFS:42,EAFNOSUPPORT:5,EPROTOTYPE:67,ENOTSOCK:57,ENOPROTOOPT:50,ESHUTDOWN:140,ECONNREFUSED:14,EADDRINUSE:3,ECONNABORTED:13,ENETUNREACH:40,ENETDOWN:38,ETIMEDOUT:73,EHOSTDOWN:142,EHOSTUNREACH:23,EINPROGRESS:26,EALREADY:7,EDESTADDRREQ:17,EMSGSIZE:35,EPROTONOSUPPORT:66,ESOCKTNOSUPPORT:137,EADDRNOTAVAIL:4,ENETRESET:39,EISCONN:30,ENOTCONN:53,ETOOMANYREFS:141,EUSERS:136,EDQUOT:19,ESTALE:72,ENOTSUP:138,ENOMEDIUM:148,EILSEQ:25,EOVERFLOW:61,ECANCELED:11,ENOTRECOVERABLE:56,EOWNERDEAD:62,ESTRPIPE:135};var SOCKFS={mount:function(mount){Module["websocket"]=Module["websocket"]&&"object"===typeof Module["websocket"]?Module["websocket"]:{};Module["websocket"]._callbacks={};Module["websocket"]["on"]=function(event,callback){if("function"===typeof callback){this._callbacks[event]=callback}return this};Module["websocket"].emit=function(event,param){if("function"===typeof this._callbacks[event]){this._callbacks[event].call(this,param)}};return FS.createNode(null,"/",16384|511,0)},createSocket:function(family,type,protocol){type&=~526336;var streaming=type==1;if(protocol){assert(streaming==(protocol==6))}var sock={family:family,type:type,protocol:protocol,server:null,error:null,peers:{},pending:[],recv_queue:[],sock_ops:SOCKFS.websocket_sock_ops};var name=SOCKFS.nextname();var node=FS.createNode(SOCKFS.root,name,49152,0);node.sock=sock;var stream=FS.createStream({path:name,node:node,flags:2,seekable:false,stream_ops:SOCKFS.stream_ops});sock.stream=stream;return sock},getSocket:function(fd){var stream=FS.getStream(fd);if(!stream||!FS.isSocket(stream.node.mode)){return null}return stream.node.sock},stream_ops:{poll:function(stream){var sock=stream.node.sock;return sock.sock_ops.poll(sock)},ioctl:function(stream,request,varargs){var sock=stream.node.sock;return sock.sock_ops.ioctl(sock,request,varargs)},read:function(stream,buffer,offset,length,position){var sock=stream.node.sock;var msg=sock.sock_ops.recvmsg(sock,length);if(!msg){return 0}buffer.set(msg.buffer,offset);return msg.buffer.length},write:function(stream,buffer,offset,length,position){var sock=stream.node.sock;return sock.sock_ops.sendmsg(sock,buffer,offset,length)},close:function(stream){var sock=stream.node.sock;sock.sock_ops.close(sock)}},nextname:function(){if(!SOCKFS.nextname.current){SOCKFS.nextname.current=0}return"socket["+SOCKFS.nextname.current+++"]"},websocket_sock_ops:{createPeer:function(sock,addr,port){var ws;if(typeof addr==="object"){ws=addr;addr=null;port=null}if(ws){if(ws._socket){addr=ws._socket.remoteAddress;port=ws._socket.remotePort}else{var result=/ws[s]?:\/\/([^:]+):(\d+)/.exec(ws.url);if(!result){throw new Error("WebSocket URL must be in the format ws(s)://address:port")}addr=result[1];port=parseInt(result[2],10)}}else{try{var runtimeConfig=Module["websocket"]&&"object"===typeof Module["websocket"];var url="ws:#".replace("#","//");if(runtimeConfig){if("string"===typeof Module["websocket"]["url"]){url=Module["websocket"]["url"]}}if(url==="ws://"||url==="wss://"){var parts=addr.split("/");url=url+parts[0]+":"+port+"/"+parts.slice(1).join("/")}var subProtocols="binary";if(runtimeConfig){if("string"===typeof Module["websocket"]["subprotocol"]){subProtocols=Module["websocket"]["subprotocol"]}}var opts=undefined;if(subProtocols!=="null"){subProtocols=subProtocols.replace(/^ +| +$/g,"").split(/ *, */);opts=ENVIRONMENT_IS_NODE?{"protocol":subProtocols.toString()}:subProtocols}if(runtimeConfig&&null===Module["websocket"]["subprotocol"]){subProtocols="null";opts=undefined}var WebSocketConstructor;if(ENVIRONMENT_IS_NODE){WebSocketConstructor=require("ws")}else{WebSocketConstructor=WebSocket}ws=new WebSocketConstructor(url,opts);ws.binaryType="arraybuffer"}catch(e){throw new FS.ErrnoError(ERRNO_CODES.EHOSTUNREACH)}}var peer={addr:addr,port:port,socket:ws,dgram_send_queue:[]};SOCKFS.websocket_sock_ops.addPeer(sock,peer);SOCKFS.websocket_sock_ops.handlePeerEvents(sock,peer);if(sock.type===2&&typeof sock.sport!=="undefined"){peer.dgram_send_queue.push(new Uint8Array([255,255,255,255,"p".charCodeAt(0),"o".charCodeAt(0),"r".charCodeAt(0),"t".charCodeAt(0),(sock.sport&65280)>>8,sock.sport&255]))}return peer},getPeer:function(sock,addr,port){return sock.peers[addr+":"+port]},addPeer:function(sock,peer){sock.peers[peer.addr+":"+peer.port]=peer},removePeer:function(sock,peer){delete sock.peers[peer.addr+":"+peer.port]},handlePeerEvents:function(sock,peer){var first=true;var handleOpen=function(){Module["websocket"].emit("open",sock.stream.fd);try{var queued=peer.dgram_send_queue.shift();while(queued){peer.socket.send(queued);queued=peer.dgram_send_queue.shift()}}catch(e){peer.socket.close()}};function handleMessage(data){if(typeof data==="string"){var encoder=new TextEncoder;data=encoder.encode(data)}else{assert(data.byteLength!==undefined);if(data.byteLength==0){return}else{data=new Uint8Array(data)}}var wasfirst=first;first=false;if(wasfirst&&data.length===10&&data[0]===255&&data[1]===255&&data[2]===255&&data[3]===255&&data[4]==="p".charCodeAt(0)&&data[5]==="o".charCodeAt(0)&&data[6]==="r".charCodeAt(0)&&data[7]==="t".charCodeAt(0)){var newport=data[8]<<8|data[9];SOCKFS.websocket_sock_ops.removePeer(sock,peer);peer.port=newport;SOCKFS.websocket_sock_ops.addPeer(sock,peer);return}sock.recv_queue.push({addr:peer.addr,port:peer.port,data:data});Module["websocket"].emit("message",sock.stream.fd)}if(ENVIRONMENT_IS_NODE){peer.socket.on("open",handleOpen);peer.socket.on("message",function(data,flags){if(!flags.binary){return}handleMessage(new Uint8Array(data).buffer)});peer.socket.on("close",function(){Module["websocket"].emit("close",sock.stream.fd)});peer.socket.on("error",function(error){sock.error=ERRNO_CODES.ECONNREFUSED;Module["websocket"].emit("error",[sock.stream.fd,sock.error,"ECONNREFUSED: Connection refused"])})}else{peer.socket.onopen=handleOpen;peer.socket.onclose=function(){Module["websocket"].emit("close",sock.stream.fd)};peer.socket.onmessage=function peer_socket_onmessage(event){handleMessage(event.data)};peer.socket.onerror=function(error){sock.error=ERRNO_CODES.ECONNREFUSED;Module["websocket"].emit("error",[sock.stream.fd,sock.error,"ECONNREFUSED: Connection refused"])}}},poll:function(sock){if(sock.type===1&&sock.server){return sock.pending.length?64|1:0}var mask=0;var dest=sock.type===1?SOCKFS.websocket_sock_ops.getPeer(sock,sock.daddr,sock.dport):null;if(sock.recv_queue.length||!dest||dest&&dest.socket.readyState===dest.socket.CLOSING||dest&&dest.socket.readyState===dest.socket.CLOSED){mask|=64|1}if(!dest||dest&&dest.socket.readyState===dest.socket.OPEN){mask|=4}if(dest&&dest.socket.readyState===dest.socket.CLOSING||dest&&dest.socket.readyState===dest.socket.CLOSED){mask|=16}return mask},ioctl:function(sock,request,arg){switch(request){case 21531:var bytes=0;if(sock.recv_queue.length){bytes=sock.recv_queue[0].data.length}HEAP32[arg>>2]=bytes;return 0;default:return ERRNO_CODES.EINVAL}},close:function(sock){if(sock.server){try{sock.server.close()}catch(e){}sock.server=null}var peers=Object.keys(sock.peers);for(var i=0;i>8&255)+"."+(addr>>16&255)+"."+(addr>>24&255)}function inetNtop6(ints){var str="";var word=0;var longest=0;var lastzero=0;var zstart=0;var len=0;var i=0;var parts=[ints[0]&65535,ints[0]>>16,ints[1]&65535,ints[1]>>16,ints[2]&65535,ints[2]>>16,ints[3]&65535,ints[3]>>16];var hasipv4=true;var v4part="";for(i=0;i<5;i++){if(parts[i]!==0){hasipv4=false;break}}if(hasipv4){v4part=inetNtop4(parts[6]|parts[7]<<16);if(parts[5]===-1){str="::ffff:";str+=v4part;return str}if(parts[5]===0){str="::";if(v4part==="0.0.0.0")v4part="";if(v4part==="0.0.0.1")v4part="1";str+=v4part;return str}}for(word=0;word<8;word++){if(parts[word]===0){if(word-lastzero>1){len=0}lastzero=word;len++}if(len>longest){longest=len;zstart=word-longest+1}}for(word=0;word<8;word++){if(longest>1){if(parts[word]===0&&word>=zstart&&word>1];var port=_ntohs(HEAPU16[sa+2>>1]);var addr;switch(family){case 2:if(salen!==16){return{errno:28}}addr=HEAP32[sa+4>>2];addr=inetNtop4(addr);break;case 10:if(salen!==28){return{errno:28}}addr=[HEAP32[sa+8>>2],HEAP32[sa+12>>2],HEAP32[sa+16>>2],HEAP32[sa+20>>2]];addr=inetNtop6(addr);break;default:return{errno:5}}return{family:family,addr:addr,port:port}}function getSocketAddress(addrp,addrlen,allowNull){if(allowNull&&addrp===0)return null;var info=readSockaddr(addrp,addrlen);if(info.errno)throw new FS.ErrnoError(info.errno);info.addr=DNS.lookup_addr(info.addr)||info.addr;return info}function ___sys_connect(fd,addr,addrlen){try{var sock=getSocketFromFD(fd);var info=getSocketAddress(addr,addrlen);sock.sock_ops.connect(sock,info.addr,info.port);return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_fadvise64_64(fd,offset,len,advice){return 0}function ___sys_fchmod(fd,mode){try{FS.fchmod(fd,mode);return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_fcntl64(fd,cmd,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(fd);switch(cmd){case 0:{var arg=SYSCALLS.get();if(arg<0){return-28}var newStream;newStream=FS.open(stream.path,stream.flags,0,arg);return newStream.fd}case 1:case 2:return 0;case 3:return stream.flags;case 4:{var arg=SYSCALLS.get();stream.flags|=arg;return 0}case 12:{var arg=SYSCALLS.get();var offset=0;HEAP16[arg+offset>>1]=2;return 0}case 13:case 14:return 0;case 16:case 8:return-28;case 9:setErrNo(28);return-1;default:{return-28}}}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_fstat64(fd,buf){try{var stream=SYSCALLS.getStreamFromFD(fd);return SYSCALLS.doStat(FS.stat,stream.path,buf)}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_fstatfs64(fd,size,buf){try{var stream=SYSCALLS.getStreamFromFD(fd);return ___sys_statfs64(0,size,buf)}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_ftruncate64(fd,zero,low,high){try{var length=SYSCALLS.get64(low,high);FS.ftruncate(fd,length);return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_getcwd(buf,size){try{if(size===0)return-28;var cwd=FS.cwd();var cwdLengthInBytes=lengthBytesUTF8(cwd);if(size>>0,(tempDouble=id,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[dirp+pos>>2]=tempI64[0],HEAP32[dirp+pos+4>>2]=tempI64[1];tempI64=[(idx+1)*struct_size>>>0,(tempDouble=(idx+1)*struct_size,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[dirp+pos+8>>2]=tempI64[0],HEAP32[dirp+pos+12>>2]=tempI64[1];HEAP16[dirp+pos+16>>1]=280;HEAP8[dirp+pos+18>>0]=type;stringToUTF8(name,dirp+pos+19,256);pos+=struct_size;idx+=1}FS.llseek(stream,idx*struct_size,0);return pos}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_getpid(){return 42}function ___sys_getrusage(who,usage){try{_memset(usage,0,136);HEAP32[usage>>2]=1;HEAP32[usage+4>>2]=2;HEAP32[usage+8>>2]=3;HEAP32[usage+12>>2]=4;return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_ioctl(fd,op,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(fd);switch(op){case 21509:case 21505:{if(!stream.tty)return-59;return 0}case 21510:case 21511:case 21512:case 21506:case 21507:case 21508:{if(!stream.tty)return-59;return 0}case 21519:{if(!stream.tty)return-59;var argp=SYSCALLS.get();HEAP32[argp>>2]=0;return 0}case 21520:{if(!stream.tty)return-59;return-28}case 21531:{var argp=SYSCALLS.get();return FS.ioctl(stream,op,argp)}case 21523:{if(!stream.tty)return-59;return 0}case 21524:{if(!stream.tty)return-59;return 0}default:abort("bad ioctl syscall "+op)}}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_link(oldpath,newpath){return-34}function ___sys_lstat64(path,buf){try{path=SYSCALLS.getStr(path);return SYSCALLS.doStat(FS.lstat,path,buf)}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_madvise1(addr,length,advice){return 0}function ___sys_mkdir(path,mode){try{path=SYSCALLS.getStr(path);return SYSCALLS.doMkdir(path,mode)}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function syscallMmap2(addr,len,prot,flags,fd,off){off<<=12;var ptr;var allocated=false;if((flags&16)!==0&&addr%65536!==0){return-28}if((flags&32)!==0){ptr=_memalign(65536,len);if(!ptr)return-48;_memset(ptr,0,len);allocated=true}else{var info=FS.getStream(fd);if(!info)return-8;var res=FS.mmap(info,addr,len,off,prot,flags);ptr=res.ptr;allocated=res.allocated}SYSCALLS.mappings[ptr]={malloc:ptr,len:len,allocated:allocated,fd:fd,prot:prot,flags:flags,offset:off};return ptr}function ___sys_mmap2(addr,len,prot,flags,fd,off){try{return syscallMmap2(addr,len,prot,flags,fd,off)}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_msync(addr,len,flags){try{var info=SYSCALLS.mappings[addr];if(!info)return 0;SYSCALLS.doMsync(addr,FS.getStream(info.fd),len,info.flags,0);return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function syscallMunmap(addr,len){if((addr|0)===-1||len===0){return-28}var info=SYSCALLS.mappings[addr];if(!info)return 0;if(len===info.len){var stream=FS.getStream(info.fd);if(stream){if(info.prot&2){SYSCALLS.doMsync(addr,stream,len,info.flags,info.offset)}FS.munmap(stream)}SYSCALLS.mappings[addr]=null;if(info.allocated){_free(info.malloc)}}return 0}function ___sys_munmap(addr,len){try{return syscallMunmap(addr,len)}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_open(path,flags,varargs){SYSCALLS.varargs=varargs;try{var pathname=SYSCALLS.getStr(path);var mode=varargs?SYSCALLS.get():0;var stream=FS.open(pathname,flags,mode);return stream.fd}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_readlink(path,buf,bufsize){try{path=SYSCALLS.getStr(path);return SYSCALLS.doReadlink(path,buf,bufsize)}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function inetPton4(str){var b=str.split(".");for(var i=0;i<4;i++){var tmp=Number(b[i]);if(isNaN(tmp))return null;b[i]=tmp}return(b[0]|b[1]<<8|b[2]<<16|b[3]<<24)>>>0}function jstoi_q(str){return parseInt(str)}function inetPton6(str){var words;var w,offset,z;var valid6regx=/^((?=.*::)(?!.*::.+::)(::)?([\dA-F]{1,4}:(:|\b)|){5}|([\dA-F]{1,4}:){6})((([\dA-F]{1,4}((?!\3)::|:\b|$))|(?!\2\3)){2}|(((2[0-4]|1\d|[1-9])?\d|25[0-5])\.?\b){4})$/i;var parts=[];if(!valid6regx.test(str)){return null}if(str==="::"){return[0,0,0,0,0,0,0,0]}if(str.startsWith("::")){str=str.replace("::","Z:")}else{str=str.replace("::",":Z:")}if(str.indexOf(".")>0){str=str.replace(new RegExp("[.]","g"),":");words=str.split(":");words[words.length-4]=jstoi_q(words[words.length-4])+jstoi_q(words[words.length-3])*256;words[words.length-3]=jstoi_q(words[words.length-2])+jstoi_q(words[words.length-1])*256;words=words.slice(0,words.length-2)}else{words=str.split(":")}offset=0;z=0;for(w=0;w>2]=16}HEAP16[sa>>1]=family;HEAP32[sa+4>>2]=addr;HEAP16[sa+2>>1]=_htons(port);tempI64=[0>>>0,(tempDouble=0,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[sa+8>>2]=tempI64[0],HEAP32[sa+12>>2]=tempI64[1];break;case 10:addr=inetPton6(addr);if(addrlen){HEAP32[addrlen>>2]=28}HEAP32[sa>>2]=family;HEAP32[sa+8>>2]=addr[0];HEAP32[sa+12>>2]=addr[1];HEAP32[sa+16>>2]=addr[2];HEAP32[sa+20>>2]=addr[3];HEAP16[sa+2>>1]=_htons(port);HEAP32[sa+4>>2]=0;HEAP32[sa+24>>2]=0;break;default:return 5}return 0}var DNS={address_map:{id:1,addrs:{},names:{}},lookup_name:function(name){var res=inetPton4(name);if(res!==null){return name}res=inetPton6(name);if(res!==null){return name}var addr;if(DNS.address_map.addrs[name]){addr=DNS.address_map.addrs[name]}else{var id=DNS.address_map.id++;assert(id<65535,"exceeded max address mappings of 65535");addr="172.29."+(id&255)+"."+(id&65280);DNS.address_map.names[addr]=name;DNS.address_map.addrs[name]=addr}return addr},lookup_addr:function(addr){if(DNS.address_map.names[addr]){return DNS.address_map.names[addr]}return null}};function ___sys_recvfrom(fd,buf,len,flags,addr,addrlen){try{var sock=getSocketFromFD(fd);var msg=sock.sock_ops.recvmsg(sock,len);if(!msg)return 0;if(addr){var errno=writeSockaddr(addr,sock.family,DNS.lookup_name(msg.addr),msg.port,addrlen)}HEAPU8.set(msg.buffer,buf);return msg.buffer.byteLength}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_rename(old_path,new_path){try{old_path=SYSCALLS.getStr(old_path);new_path=SYSCALLS.getStr(new_path);FS.rename(old_path,new_path);return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_rmdir(path){try{path=SYSCALLS.getStr(path);FS.rmdir(path);return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_sendto(fd,message,length,flags,addr,addr_len){try{var sock=getSocketFromFD(fd);var dest=getSocketAddress(addr,addr_len,true);if(!dest){return FS.write(sock.stream,HEAP8,message,length)}else{return sock.sock_ops.sendmsg(sock,HEAP8,message,length,dest.addr,dest.port)}}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_setsockopt(fd){try{return-50}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_shutdown(fd,how){try{getSocketFromFD(fd);return-52}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_socket(domain,type,protocol){try{var sock=SOCKFS.createSocket(domain,type,protocol);return sock.stream.fd}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_stat64(path,buf){try{path=SYSCALLS.getStr(path);return SYSCALLS.doStat(FS.stat,path,buf)}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_symlink(target,linkpath){try{target=SYSCALLS.getStr(target);linkpath=SYSCALLS.getStr(linkpath);FS.symlink(target,linkpath);return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_unlink(path){try{path=SYSCALLS.getStr(path);FS.unlink(path);return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function ___sys_utimensat(dirfd,path,times,flags){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path,true);var seconds=HEAP32[times>>2];var nanoseconds=HEAP32[times+4>>2];var atime=seconds*1e3+nanoseconds/(1e3*1e3);times+=8;seconds=HEAP32[times>>2];nanoseconds=HEAP32[times+4>>2];var mtime=seconds*1e3+nanoseconds/(1e3*1e3);FS.utime(path,atime,mtime);return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return-e.errno}}function _abort(){abort()}function _emscripten_get_now_res(){if(ENVIRONMENT_IS_NODE){return 1}else if(typeof dateNow!=="undefined"){return 1e3}else return 1e3}function _clock_getres(clk_id,res){var nsec;if(clk_id===0){nsec=1e3*1e3}else if(clk_id===1&&_emscripten_get_now_is_monotonic){nsec=_emscripten_get_now_res()}else{setErrNo(28);return-1}HEAP32[res>>2]=nsec/1e9|0;HEAP32[res+4>>2]=nsec;return 0}function _difftime(time1,time0){return time1-time0}var DOTNETENTROPY={batchedQuotaMax:65536,getBatchedRandomValues:function(buffer,bufferLength){for(var i=0;i>=2;while(ch=HEAPU8[sigPtr++]){var double=ch<105;if(double&&buf&1)buf++;readAsmConstArgsArray.push(double?HEAPF64[buf++>>1]:HEAP32[buf]);++buf}return readAsmConstArgsArray}function _emscripten_asm_const_int(code,sigPtr,argbuf){var args=readAsmConstArgs(sigPtr,argbuf);return ASM_CONSTS[code].apply(null,args)}function _emscripten_get_heap_max(){return 2147483648}function _emscripten_memcpy_big(dest,src,num){HEAPU8.copyWithin(dest,src,src+num)}function emscripten_realloc_buffer(size){try{wasmMemory.grow(size-buffer.byteLength+65535>>>16);updateGlobalBufferAndViews(wasmMemory.buffer);return 1}catch(e){}}function _emscripten_resize_heap(requestedSize){var oldSize=HEAPU8.length;requestedSize=requestedSize>>>0;var maxHeapSize=2147483648;if(requestedSize>maxHeapSize){return false}for(var cutDown=1;cutDown<=4;cutDown*=2){var overGrownHeapSize=oldSize*(1+.2/cutDown);overGrownHeapSize=Math.min(overGrownHeapSize,requestedSize+100663296);var newSize=Math.min(maxHeapSize,alignUp(Math.max(requestedSize,overGrownHeapSize),65536));var replacement=emscripten_realloc_buffer(newSize);if(replacement){return true}}return false}function _emscripten_thread_sleep(msecs){var start=_emscripten_get_now();while(_emscripten_get_now()-start>2]=strings.length;var bufSize=0;strings.forEach(function(string){bufSize+=string.length+1});HEAP32[penviron_buf_size>>2]=bufSize;return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return e.errno}}function _exit(status){exit(status)}function _fd_close(fd){try{var stream=SYSCALLS.getStreamFromFD(fd);FS.close(stream);return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return e.errno}}function _fd_fdstat_get(fd,pbuf){try{var stream=SYSCALLS.getStreamFromFD(fd);var type=stream.tty?2:FS.isDir(stream.mode)?3:FS.isLink(stream.mode)?7:4;HEAP8[pbuf>>0]=type;return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return e.errno}}function _fd_pread(fd,iov,iovcnt,offset_low,offset_high,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=SYSCALLS.doReadv(stream,iov,iovcnt,offset_low);HEAP32[pnum>>2]=num;return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return e.errno}}function _fd_pwrite(fd,iov,iovcnt,offset_low,offset_high,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=SYSCALLS.doWritev(stream,iov,iovcnt,offset_low);HEAP32[pnum>>2]=num;return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return e.errno}}function _fd_read(fd,iov,iovcnt,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=SYSCALLS.doReadv(stream,iov,iovcnt);HEAP32[pnum>>2]=num;return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return e.errno}}function _fd_seek(fd,offset_low,offset_high,whence,newOffset){try{var stream=SYSCALLS.getStreamFromFD(fd);var HIGH_OFFSET=4294967296;var offset=offset_high*HIGH_OFFSET+(offset_low>>>0);var DOUBLE_LIMIT=9007199254740992;if(offset<=-DOUBLE_LIMIT||offset>=DOUBLE_LIMIT){return-61}FS.llseek(stream,offset,whence);tempI64=[stream.position>>>0,(tempDouble=stream.position,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[newOffset>>2]=tempI64[0],HEAP32[newOffset+4>>2]=tempI64[1];if(stream.getdents&&offset===0&&whence===0)stream.getdents=null;return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return e.errno}}function _fd_sync(fd){try{var stream=SYSCALLS.getStreamFromFD(fd);if(stream.stream_ops&&stream.stream_ops.fsync){return-stream.stream_ops.fsync(stream)}return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return e.errno}}function _fd_write(fd,iov,iovcnt,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=SYSCALLS.doWritev(stream,iov,iovcnt);HEAP32[pnum>>2]=num;return 0}catch(e){if(typeof FS==="undefined"||!(e instanceof FS.ErrnoError))abort(e);return e.errno}}function _flock(fd,operation){return 0}var GAI_ERRNO_MESSAGES={};function _gai_strerror(val){var buflen=256;if(!_gai_strerror.buffer){_gai_strerror.buffer=_malloc(buflen);GAI_ERRNO_MESSAGES["0"]="Success";GAI_ERRNO_MESSAGES[""+-1]="Invalid value for 'ai_flags' field";GAI_ERRNO_MESSAGES[""+-2]="NAME or SERVICE is unknown";GAI_ERRNO_MESSAGES[""+-3]="Temporary failure in name resolution";GAI_ERRNO_MESSAGES[""+-4]="Non-recoverable failure in name res";GAI_ERRNO_MESSAGES[""+-6]="'ai_family' not supported";GAI_ERRNO_MESSAGES[""+-7]="'ai_socktype' not supported";GAI_ERRNO_MESSAGES[""+-8]="SERVICE not supported for 'ai_socktype'";GAI_ERRNO_MESSAGES[""+-10]="Memory allocation failure";GAI_ERRNO_MESSAGES[""+-11]="System error returned in 'errno'";GAI_ERRNO_MESSAGES[""+-12]="Argument buffer overflow"}var msg="Unknown error";if(val in GAI_ERRNO_MESSAGES){if(GAI_ERRNO_MESSAGES[val].length>buflen-1){msg="Message too long"}else{msg=GAI_ERRNO_MESSAGES[val]}}writeAsciiToMemory(msg,_gai_strerror.buffer);return _gai_strerror.buffer}function _getTempRet0(){return getTempRet0()}function _gettimeofday(ptr){var now=Date.now();HEAP32[ptr>>2]=now/1e3|0;HEAP32[ptr+4>>2]=now%1e3*1e3|0;return 0}function _gmtime_r(time,tmPtr){var date=new Date(HEAP32[time>>2]*1e3);HEAP32[tmPtr>>2]=date.getUTCSeconds();HEAP32[tmPtr+4>>2]=date.getUTCMinutes();HEAP32[tmPtr+8>>2]=date.getUTCHours();HEAP32[tmPtr+12>>2]=date.getUTCDate();HEAP32[tmPtr+16>>2]=date.getUTCMonth();HEAP32[tmPtr+20>>2]=date.getUTCFullYear()-1900;HEAP32[tmPtr+24>>2]=date.getUTCDay();HEAP32[tmPtr+36>>2]=0;HEAP32[tmPtr+32>>2]=0;var start=Date.UTC(date.getUTCFullYear(),0,1,0,0,0,0);var yday=(date.getTime()-start)/(1e3*60*60*24)|0;HEAP32[tmPtr+28>>2]=yday;if(!_gmtime_r.GMTString)_gmtime_r.GMTString=allocateUTF8("GMT");HEAP32[tmPtr+40>>2]=_gmtime_r.GMTString;return tmPtr}function _llvm_eh_typeid_for(type){return type}function _tzset(){if(_tzset.called)return;_tzset.called=true;var currentYear=(new Date).getFullYear();var winter=new Date(currentYear,0,1);var summer=new Date(currentYear,6,1);var winterOffset=winter.getTimezoneOffset();var summerOffset=summer.getTimezoneOffset();var stdTimezoneOffset=Math.max(winterOffset,summerOffset);HEAP32[__get_timezone()>>2]=stdTimezoneOffset*60;HEAP32[__get_daylight()>>2]=Number(winterOffset!=summerOffset);function extractZone(date){var match=date.toTimeString().match(/\(([A-Za-z ]+)\)$/);return match?match[1]:"GMT"}var winterName=extractZone(winter);var summerName=extractZone(summer);var winterNamePtr=allocateUTF8(winterName);var summerNamePtr=allocateUTF8(summerName);if(summerOffset>2]=winterNamePtr;HEAP32[__get_tzname()+4>>2]=summerNamePtr}else{HEAP32[__get_tzname()>>2]=summerNamePtr;HEAP32[__get_tzname()+4>>2]=winterNamePtr}}function _localtime_r(time,tmPtr){_tzset();var date=new Date(HEAP32[time>>2]*1e3);HEAP32[tmPtr>>2]=date.getSeconds();HEAP32[tmPtr+4>>2]=date.getMinutes();HEAP32[tmPtr+8>>2]=date.getHours();HEAP32[tmPtr+12>>2]=date.getDate();HEAP32[tmPtr+16>>2]=date.getMonth();HEAP32[tmPtr+20>>2]=date.getFullYear()-1900;HEAP32[tmPtr+24>>2]=date.getDay();var start=new Date(date.getFullYear(),0,1);var yday=(date.getTime()-start.getTime())/(1e3*60*60*24)|0;HEAP32[tmPtr+28>>2]=yday;HEAP32[tmPtr+36>>2]=-(date.getTimezoneOffset()*60);var summerOffset=new Date(date.getFullYear(),6,1).getTimezoneOffset();var winterOffset=start.getTimezoneOffset();var dst=(summerOffset!=winterOffset&&date.getTimezoneOffset()==Math.min(winterOffset,summerOffset))|0;HEAP32[tmPtr+32>>2]=dst;var zonePtr=HEAP32[__get_tzname()+(dst?4:0)>>2];HEAP32[tmPtr+40>>2]=zonePtr;return tmPtr}var MONO={pump_count:0,timeout_queue:[],spread_timers_maximum:0,_vt_stack:[],mono_wasm_runtime_is_ready:false,mono_wasm_ignore_pdb_load_errors:true,_id_table:{},pump_message:function(){if(!this.mono_background_exec)this.mono_background_exec=Module.cwrap("mono_background_exec",null);while(MONO.timeout_queue.length>0){--MONO.pump_count;MONO.timeout_queue.shift()()}while(MONO.pump_count>0){--MONO.pump_count;this.mono_background_exec()}},export_functions:function(module){module["pump_message"]=MONO.pump_message.bind(MONO);module["prevent_timer_throttling"]=MONO.prevent_timer_throttling.bind(MONO);module["mono_wasm_set_timeout_exec"]=MONO.mono_wasm_set_timeout_exec.bind(MONO);module["mono_load_runtime_and_bcl"]=MONO.mono_load_runtime_and_bcl.bind(MONO);module["mono_load_runtime_and_bcl_args"]=MONO.mono_load_runtime_and_bcl_args.bind(MONO);module["mono_wasm_load_bytes_into_heap"]=MONO.mono_wasm_load_bytes_into_heap.bind(MONO);module["mono_wasm_load_icu_data"]=MONO.mono_wasm_load_icu_data.bind(MONO);module["mono_wasm_get_icudt_name"]=MONO.mono_wasm_get_icudt_name.bind(MONO);module["mono_wasm_globalization_init"]=MONO.mono_wasm_globalization_init.bind(MONO);module["mono_wasm_get_loaded_files"]=MONO.mono_wasm_get_loaded_files.bind(MONO);module["mono_wasm_new_root_buffer"]=MONO.mono_wasm_new_root_buffer.bind(MONO);module["mono_wasm_new_root_buffer_from_pointer"]=MONO.mono_wasm_new_root_buffer_from_pointer.bind(MONO);module["mono_wasm_new_root"]=MONO.mono_wasm_new_root.bind(MONO);module["mono_wasm_new_roots"]=MONO.mono_wasm_new_roots.bind(MONO);module["mono_wasm_release_roots"]=MONO.mono_wasm_release_roots.bind(MONO);module["mono_wasm_load_config"]=MONO.mono_wasm_load_config.bind(MONO)},_base64Converter:{_base64Table:["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","+","/"],_makeByteReader:function(bytes,index,count){var position=typeof index==="number"?index:0;var endpoint;if(typeof count==="number")endpoint=position+count;else endpoint=bytes.length-position;var result={read:function(){if(position>=endpoint)return false;var nextByte=bytes[position];position+=1;return nextByte}};Object.defineProperty(result,"eof",{get:function(){return position>=endpoint},configurable:true,enumerable:true});return result},toBase64StringImpl:function(inArray,offset,length){var reader=this._makeByteReader(inArray,offset,length);var result="";var ch1=0,ch2=0,ch3=0,bits=0,equalsCount=0,sum=0;var mask1=(1<<24)-1,mask2=(1<<18)-1,mask3=(1<<12)-1,mask4=(1<<6)-1;var shift1=18,shift2=12,shift3=6,shift4=0;while(true){ch1=reader.read();ch2=reader.read();ch3=reader.read();if(ch1===false)break;if(ch2===false){ch2=0;equalsCount+=1}if(ch3===false){ch3=0;equalsCount+=1}sum=ch1<<16|ch2<<8|ch3<<0;bits=(sum&mask1)>>shift1;result+=this._base64Table[bits];bits=(sum&mask2)>>shift2;result+=this._base64Table[bits];if(equalsCount<2){bits=(sum&mask3)>>shift3;result+=this._base64Table[bits]}if(equalsCount===2){result+="=="}else if(equalsCount===1){result+="="}else{bits=(sum&mask4)>>shift4;result+=this._base64Table[bits]}}return result}},_mono_wasm_root_buffer_prototype:{_throw_index_out_of_range:function(){throw new Error("index out of range")},_check_in_range:function(index){if(index>=this.__count||index<0)this._throw_index_out_of_range()},get_address:function(index){this._check_in_range(index);return this.__offset+index*4},get_address_32:function(index){this._check_in_range(index);return this.__offset32+index},get:function(index){this._check_in_range(index);return Module.HEAP32[this.get_address_32(index)]},set:function(index,value){Module.HEAP32[this.get_address_32(index)]=value;return value},_unsafe_get:function(index){return Module.HEAP32[this.__offset32+index]},_unsafe_set:function(index,value){Module.HEAP32[this.__offset32+index]=value},clear:function(){if(this.__offset)MONO._zero_region(this.__offset,this.__count*4)},release:function(){if(this.__offset&&this.__ownsAllocation){MONO.mono_wasm_deregister_root(this.__offset);MONO._zero_region(this.__offset,this.__count*4);Module._free(this.__offset)}this.__handle=this.__offset=this.__count=this.__offset32=0},toString:function(){return"[root buffer @"+this.get_address(0)+", size "+this.__count+"]"}},_scratch_root_buffer:null,_scratch_root_free_indices:null,_scratch_root_free_indices_count:0,_scratch_root_free_instances:[],_mono_wasm_root_prototype:{get_address:function(){return this.__buffer.get_address(this.__index)},get_address_32:function(){return this.__buffer.get_address_32(this.__index)},get:function(){var result=this.__buffer._unsafe_get(this.__index);return result},set:function(value){this.__buffer._unsafe_set(this.__index,value);return value},valueOf:function(){return this.get()},clear:function(){this.set(0)},release:function(){const maxPooledInstances=128;if(MONO._scratch_root_free_instances.length>maxPooledInstances){MONO._mono_wasm_release_scratch_index(this.__index);this.__buffer=0;this.__index=0}else{this.set(0);MONO._scratch_root_free_instances.push(this)}},toString:function(){return"[root @"+this.get_address()+"]"}},_mono_wasm_release_scratch_index:function(index){if(index===undefined)return;this._scratch_root_buffer.set(index,0);this._scratch_root_free_indices[this._scratch_root_free_indices_count]=index;this._scratch_root_free_indices_count++},_mono_wasm_claim_scratch_index:function(){if(!this._scratch_root_buffer){const maxScratchRoots=8192;this._scratch_root_buffer=this.mono_wasm_new_root_buffer(maxScratchRoots,"js roots");this._scratch_root_free_indices=new Int32Array(maxScratchRoots);this._scratch_root_free_indices_count=maxScratchRoots;for(var i=0;i= 1");capacity=capacity|0;var capacityBytes=capacity*4;var offset=Module._malloc(capacityBytes);if(offset%4!==0)throw new Error("Malloc returned an unaligned offset");this._zero_region(offset,capacityBytes);var result=Object.create(this._mono_wasm_root_buffer_prototype);result.__offset=offset;result.__offset32=offset/4|0;result.__count=capacity;result.length=capacity;result.__handle=this.mono_wasm_register_root(offset,capacityBytes,msg||0);result.__ownsAllocation=true;return result},mono_wasm_new_root_buffer_from_pointer:function(offset,capacity,msg){if(!this.mono_wasm_register_root||!this.mono_wasm_deregister_root){this.mono_wasm_register_root=Module.cwrap("mono_wasm_register_root","number",["number","number","string"]);this.mono_wasm_deregister_root=Module.cwrap("mono_wasm_deregister_root",null,["number"])}if(capacity<=0)throw new Error("capacity >= 1");capacity=capacity|0;var capacityBytes=capacity*4;if(offset%4!==0)throw new Error("Unaligned offset");this._zero_region(offset,capacityBytes);var result=Object.create(this._mono_wasm_root_buffer_prototype);result.__offset=offset;result.__offset32=offset/4|0;result.__count=capacity;result.length=capacity;result.__handle=this.mono_wasm_register_root(offset,capacityBytes,msg||0);result.__ownsAllocation=false;return result},mono_wasm_new_root:function(value){var result;if(this._scratch_root_free_instances.length>0){result=this._scratch_root_free_instances.pop()}else{var index=this._mono_wasm_claim_scratch_index();var buffer=this._scratch_root_buffer;result=Object.create(this._mono_wasm_root_prototype);result.__buffer=buffer;result.__index=index}if(value!==undefined){if(typeof value!=="number")throw new Error("value must be an address in the managed heap");result.set(value)}else{result.set(0)}return result},mono_wasm_new_roots:function(count_or_values){var result;if(Array.isArray(count_or_values)){result=new Array(count_or_values.length);for(var i=0;i0){result=new Array(count_or_values);for(var i=0;ithis._debugger_buffer_len){if(this._debugger_buffer)Module._free(this._debugger_buffer);this._debugger_buffer_len=Math.max(command_parameters.length,this._debugger_buffer_len,256);this._debugger_buffer=Module._malloc(this._debugger_buffer_len)}this._debugger_heap_bytes=new Uint8Array(Module.HEAPU8.buffer,this._debugger_buffer,this._debugger_buffer_len);this._debugger_heap_bytes.set(this._base64_to_uint8(command_parameters))},mono_wasm_send_dbg_command_with_parms:function(id,command_set,command,command_parameters,length,valtype,newvalue){this.mono_wasm_malloc_and_set_debug_buffer(command_parameters);this._c_fn_table.mono_wasm_send_dbg_command_with_parms_wrapper(id,command_set,command,this._debugger_buffer,length,valtype,newvalue.toString());let{res_ok:res_ok,res:res}=MONO.commands_received.remove(id);if(!res_ok)throw new Error(`Failed on mono_wasm_invoke_method_debugger_agent_with_parms`);return res},mono_wasm_send_dbg_command:function(id,command_set,command,command_parameters){this.mono_wasm_malloc_and_set_debug_buffer(command_parameters);this._c_fn_table.mono_wasm_send_dbg_command_wrapper(id,command_set,command,this._debugger_buffer,command_parameters.length);let{res_ok:res_ok,res:res}=MONO.commands_received.remove(id);if(!res_ok)throw new Error(`Failed on mono_wasm_send_dbg_command`);return res},mono_wasm_get_dbg_command_info:function(){let{res_ok:res_ok,res:res}=MONO.commands_received.remove(0);if(!res_ok)throw new Error(`Failed on mono_wasm_get_dbg_command_info`);return res},_get_cfo_res_details:function(objectId,args){if(!(objectId in this._call_function_res_cache))throw new Error(`Could not find any object with id ${objectId}`);const real_obj=this._call_function_res_cache[objectId];const descriptors=Object.getOwnPropertyDescriptors(real_obj);if(args.accessorPropertiesOnly){Object.keys(descriptors).forEach(k=>{if(descriptors[k].get===undefined)Reflect.deleteProperty(descriptors,k)})}let res_details=[];Object.keys(descriptors).forEach(k=>{let new_obj;let prop_desc=descriptors[k];if(typeof prop_desc.value=="object"){new_obj=Object.assign({name:k},prop_desc)}else if(prop_desc.value!==undefined){new_obj={name:k,value:Object.assign({type:typeof prop_desc.value,description:""+prop_desc.value},prop_desc)}}else if(prop_desc.get!==undefined){new_obj={name:k,get:{className:"Function",description:`get ${k} () {}`,type:"function"}}}else{new_obj={name:k,value:{type:"symbol",value:"",description:""}}}res_details.push(new_obj)});return{__value_as_json_string__:JSON.stringify(res_details)}},mono_wasm_get_details:function(objectId,args={}){return this._get_cfo_res_details(`dotnet:cfo_res:${objectId}`,args)},_cache_call_function_res:function(obj){const id=`dotnet:cfo_res:${this._next_call_function_res_id++}`;this._call_function_res_cache[id]=obj;return id},mono_wasm_release_object:function(objectId){if(objectId in this._cache_call_function_res)delete this._cache_call_function_res[objectId]},_create_proxy_from_object_id:function(objectId,details){if(objectId.startsWith("dotnet:array:")){if(details.items===undefined){const ret=details.map(p=>p.value);return ret}if(details.dimensionsDetails==undefined||details.dimensionsDetails.length==1){const ret=details.items.map(p=>p.value);return ret}}let proxy={};Object.keys(details).forEach(p=>{var prop=details[p];if(prop.get!==undefined){Object.defineProperty(proxy,prop.name,{get(){return MONO.mono_wasm_send_dbg_command(prop.get.id,prop.get.commandSet,prop.get.command,prop.get.buffer,prop.get.length)},set:function(newValue){MONO.mono_wasm_send_dbg_command_with_parms(prop.set.id,prop.set.commandSet,prop.set.command,prop.set.buffer,prop.set.length,prop.set.valtype,newValue);return true}})}else if(prop.set!==undefined){Object.defineProperty(proxy,prop.name,{get(){return prop.value},set:function(newValue){MONO.mono_wasm_send_dbg_command_with_parms(prop.set.id,prop.set.commandSet,prop.set.command,prop.set.buffer,prop.set.length,prop.set.valtype,newValue);return true}})}else{proxy[prop.name]=prop.value}});return proxy},mono_wasm_call_function_on:function(request){if(request.arguments!=undefined&&!Array.isArray(request.arguments))throw new Error(`"arguments" should be an array, but was ${request.arguments}`);const objId=request.objectId;const details=request.details;let proxy;if(objId.startsWith("dotnet:cfo_res:")){if(objId in this._call_function_res_cache)proxy=this._call_function_res_cache[objId];else throw new Error(`Unknown object id ${objId}`)}else{proxy=this._create_proxy_from_object_id(objId,details)}const fn_args=request.arguments!=undefined?request.arguments.map(a=>JSON.stringify(a.value)):[];const fn_eval_str=`var fn = ${request.functionDeclaration}; fn.call (proxy, ...[${fn_args}]);`;const fn_res=eval(fn_eval_str);if(fn_res===undefined)return{type:"undefined"};if(Object(fn_res)!==fn_res){if(typeof fn_res=="object"&&fn_res==null)return{type:typeof fn_res,subtype:`${fn_res}`,value:null};return{type:typeof fn_res,description:`${fn_res}`,value:`${fn_res}`}}if(request.returnByValue&&fn_res.subtype==undefined)return{type:"object",value:fn_res};if(Object.getPrototypeOf(fn_res)==Array.prototype){const fn_res_id=this._cache_call_function_res(fn_res);return{type:"object",subtype:"array",className:"Array",description:`Array(${fn_res.length})`,objectId:fn_res_id}}if(fn_res.value!==undefined||fn_res.subtype!==undefined){return fn_res}if(fn_res==proxy)return{type:"object",className:"Object",description:"Object",objectId:objId};const fn_res_id=this._cache_call_function_res(fn_res);return{type:"object",className:"Object",description:"Object",objectId:fn_res_id}},_clear_per_step_state:function(){this._next_id_var=0;this._id_table={}},mono_wasm_debugger_resume:function(){this._clear_per_step_state()},mono_wasm_detach_debugger:function(){if(!this.mono_wasm_set_is_debugger_attached)this.mono_wasm_set_is_debugger_attached=Module.cwrap("mono_wasm_set_is_debugger_attached","void",["bool"]);this.mono_wasm_set_is_debugger_attached(false)},_register_c_fn:function(name,...args){Object.defineProperty(this._c_fn_table,name+"_wrapper",{value:Module.cwrap(name,...args)})},_register_c_var_fn:function(name,ret_type,params){if(ret_type!=="bool")throw new Error(`Bug: Expected a C function signature that returns bool`);this._register_c_fn(name,ret_type,params);Object.defineProperty(this,name+"_info",{value:function(...args){MONO.var_info=[];const res_ok=MONO._c_fn_table[name+"_wrapper"](...args);let res=MONO.var_info;MONO.var_info=[];if(res_ok){res=this._fixup_name_value_objects(res);return{res_ok:res_ok,res:res}}return{res_ok:res_ok,res:undefined}}})},mono_wasm_runtime_ready:function(){MONO.commands_received=new Map;MONO.commands_received.remove=function(key){const value=this.get(key);this.delete(key);return value};this.mono_wasm_runtime_is_ready=true;this._clear_per_step_state();this._next_call_function_res_id=0;this._call_function_res_cache={};this._c_fn_table={};this._register_c_fn("mono_wasm_send_dbg_command","bool",["number","number","number","number","number"]);this._register_c_fn("mono_wasm_send_dbg_command_with_parms","bool",["number","number","number","number","number","number","string"]);this._debugger_buffer_len=-1;if(globalThis.dotnetDebugger)debugger;else console.debug("mono_wasm_runtime_ready","fe00e07a-5519-4dfe-b35a-f867dbaf2e28")},mono_wasm_setenv:function(name,value){if(!this.wasm_setenv)this.wasm_setenv=Module.cwrap("mono_wasm_setenv",null,["string","string"]);this.wasm_setenv(name,value)},mono_wasm_set_runtime_options:function(options){if(!this.wasm_parse_runtime_options)this.wasm_parse_runtime_options=Module.cwrap("mono_wasm_parse_runtime_options",null,["number","number"]);var argv=Module._malloc(options.length*4);var wasm_strdup=Module.cwrap("mono_wasm_strdup","number",["string"]);let aindex=0;for(var i=0;i0?virtualName.substr(0,lastSlash):null;var fileName=lastSlash>0?virtualName.substr(lastSlash+1):virtualName;if(fileName.startsWith("/"))fileName=fileName.substr(1);if(parentDirectory){if(ctx.tracing)console.log("MONO_WASM: Creating directory '"+parentDirectory+"'");var pathRet=ctx.createPath("/",parentDirectory,true,true)}else{parentDirectory="/"}if(ctx.tracing)console.log("MONO_WASM: Creating file '"+fileName+"' in directory '"+parentDirectory+"'");if(!this.mono_wasm_load_data_archive(bytes,parentDirectory)){var fileRet=ctx.createDataFile(parentDirectory,fileName,bytes,true,true,true)}break;default:throw new Error("Unrecognized asset behavior:",asset.behavior,"for asset",asset.name)}if(asset.behavior==="assembly"){var hasPpdb=ctx.mono_wasm_add_assembly(virtualName,offset,bytes.length);if(!hasPpdb){var index=ctx.loaded_files.findIndex(element=>element.file==virtualName);ctx.loaded_files.splice(index,1)}}else if(asset.behavior==="icu"){if(this.mono_wasm_load_icu_data(offset))ctx.num_icu_assets_loaded_successfully+=1;else console.error("Error loading ICU asset",asset.name)}else if(asset.behavior==="resource"){ctx.mono_wasm_add_satellite_assembly(virtualName,asset.culture,offset,bytes.length)}},mono_load_runtime_and_bcl:function(unused_vfs_prefix,deploy_prefix,debug_level,file_list,loaded_cb,fetch_file_cb){var args={fetch_file_cb:fetch_file_cb,loaded_cb:loaded_cb,debug_level:debug_level,assembly_root:deploy_prefix,assets:[]};for(var i=0;iloaded_files_with_debug_info.push(value.url));MONO.loaded_files=loaded_files_with_debug_info;if(ctx.tracing){console.log("MONO_WASM: loaded_assets: "+JSON.stringify(ctx.loaded_assets));console.log("MONO_WASM: loaded_files: "+JSON.stringify(ctx.loaded_files))}var load_runtime=Module.cwrap("mono_wasm_load_runtime",null,["string","number"]);console.debug("MONO_WASM: Initializing mono runtime");this.mono_wasm_globalization_init(args.globalization_mode);if(ENVIRONMENT_IS_SHELL||ENVIRONMENT_IS_NODE){try{load_runtime("unused",args.debug_level)}catch(ex){print("MONO_WASM: load_runtime () failed: "+ex);print("MONO_WASM: Stacktrace: \n");print(ex.stack);var wasm_exit=Module.cwrap("mono_wasm_exit",null,["number"]);wasm_exit(1)}}else{load_runtime("unused",args.debug_level)}let tz;try{tz=Intl.DateTimeFormat().resolvedOptions().timeZone}catch{}MONO.mono_wasm_setenv("TZ",tz||"UTC");MONO.mono_wasm_runtime_ready();args.loaded_cb()},_load_assets_and_runtime:function(args){if(args.enable_debugging)args.debug_level=args.enable_debugging;if(args.assembly_list)throw new Error("Invalid args (assembly_list was replaced by assets)");if(args.runtime_assets)throw new Error("Invalid args (runtime_assets was replaced by assets)");if(args.runtime_asset_sources)throw new Error("Invalid args (runtime_asset_sources was replaced by remote_sources)");if(!args.loaded_cb)throw new Error("loaded_cb not provided");var ctx={tracing:args.diagnostic_tracing||false,pending_count:args.assets.length,mono_wasm_add_assembly:Module.cwrap("mono_wasm_add_assembly","number",["string","number","number"]),mono_wasm_add_satellite_assembly:Module.cwrap("mono_wasm_add_satellite_assembly","void",["string","string","number","number"]),loaded_assets:Object.create(null),loaded_files:[],createPath:Module["FS_createPath"],createDataFile:Module["FS_createDataFile"]};if(ctx.tracing)console.log("mono_wasm_load_runtime_with_args",JSON.stringify(args));this._apply_configuration_from_args(args);var fetch_file_cb=this._get_fetch_file_cb_from_args(args);var onPendingRequestComplete=function(){--ctx.pending_count;if(ctx.pending_count===0){try{MONO._finalize_startup(args,ctx)}catch(exc){console.error("Unhandled exception in _finalize_startup",exc);throw exc}}};var processFetchResponseBuffer=function(asset,url,blob){try{MONO._handle_loaded_asset(ctx,asset,url,blob)}catch(exc){console.error("Unhandled exception in processFetchResponseBuffer",exc);throw exc}finally{onPendingRequestComplete()}};args.assets.forEach(function(asset){var attemptNextSource;var sourceIndex=0;var sourcesList=asset.load_remote?args.remote_sources:[""];var handleFetchResponse=function(response){if(!response.ok){try{attemptNextSource();return}catch(exc){console.error("MONO_WASM: Unhandled exception in handleFetchResponse attemptNextSource for asset",asset.name,exc);throw exc}}try{var bufferPromise=response["arrayBuffer"]();bufferPromise.then(processFetchResponseBuffer.bind(this,asset,response.url))}catch(exc){console.error("MONO_WASM: Unhandled exception in handleFetchResponse for asset",asset.name,exc);attemptNextSource()}};attemptNextSource=function(){if(sourceIndex>=sourcesList.length){var msg="MONO_WASM: Failed to load "+asset.name;try{var isOk=asset.is_optional||asset.name.match(/\.pdb$/)&&MONO.mono_wasm_ignore_pdb_load_errors;if(isOk)console.debug(msg);else{console.error(msg);throw new Error(msg)}}finally{onPendingRequestComplete()}}var sourcePrefix=sourcesList[sourceIndex];sourceIndex++;if(sourcePrefix==="./")sourcePrefix="";var attemptUrl;if(sourcePrefix.trim()===""){if(asset.behavior==="assembly")attemptUrl=locateFile(args.assembly_root+"/"+asset.name);else if(asset.behavior==="resource"){var path=asset.culture!==""?`${asset.culture}/${asset.name}`:asset.name;attemptUrl=locateFile(args.assembly_root+"/"+path)}else attemptUrl=asset.name}else{attemptUrl=sourcePrefix+asset.name}try{if(asset.name===attemptUrl){if(ctx.tracing)console.log("Attempting to fetch '%s'",attemptUrl)}else{if(ctx.tracing)console.log("Attempting to fetch '%s' for '%s'",attemptUrl,asset.name)}var fetch_promise=fetch_file_cb(attemptUrl);fetch_promise.then(handleFetchResponse)}catch(exc){console.error("MONO_WASM: Error fetching '%s'\n%s",attemptUrl,exc);attemptNextSource()}};attemptNextSource()})},mono_wasm_globalization_init:function(globalization_mode){var invariantMode=false;if(globalization_mode==="invariant")invariantMode=true;if(!invariantMode){if(this.num_icu_assets_loaded_successfully>0){console.debug("MONO_WASM: ICU data archive(s) loaded, disabling invariant mode")}else if(globalization_mode!=="icu"){console.debug("MONO_WASM: ICU data archive(s) not loaded, using invariant globalization mode");invariantMode=true}else{var msg="invariant globalization mode is inactive and no ICU data archives were loaded";console.error("MONO_WASM: ERROR: "+msg);throw new Error(msg)}}if(invariantMode)this.mono_wasm_setenv("DOTNET_SYSTEM_GLOBALIZATION_INVARIANT","1");this.mono_wasm_setenv("DOTNET_SYSTEM_GLOBALIZATION_PREDEFINED_CULTURES_ONLY","1")},mono_wasm_get_loaded_files:function(){if(!this.mono_wasm_set_is_debugger_attached)this.mono_wasm_set_is_debugger_attached=Module.cwrap("mono_wasm_set_is_debugger_attached","void",["bool"]);this.mono_wasm_set_is_debugger_attached(true);return MONO.loaded_files},mono_wasm_get_loaded_asset_table:function(){return MONO.loaded_assets},_base64_to_uint8:function(base64String){const byteCharacters=atob(base64String);const byteNumbers=new Array(byteCharacters.length);for(let i=0;i{var file=m[0];var last=file.lastIndexOf("/");var directory=file.slice(0,last+1);folders.add(directory)});folders.forEach(folder=>{Module["FS_createPath"](prefix,folder,true,true)});for(row of manifest){var name=row[0];var length=row[1];var bytes=data.slice(0,length);Module["FS_createDataFile"](prefix,name,bytes,true,true);data=data.slice(length)}return true},mono_wasm_raise_debug_event:function(event,args={}){if(typeof event!=="object")throw new Error(`event must be an object, but got ${JSON.stringify(event)}`);if(event.eventName===undefined)throw new Error(`event.eventName is a required parameter, in event: ${JSON.stringify(event)}`);if(typeof args!=="object")throw new Error(`args must be an object, but got ${JSON.stringify(args)}`);console.debug("mono_wasm_debug_event_raised:aef14bca-5519-4dfe-b35a-f867abc123ae",JSON.stringify(event),JSON.stringify(args))},mono_wasm_load_config:async function(configFilePath){Module.addRunDependency(configFilePath);try{let config=null;if(ENVIRONMENT_IS_WEB){const configRaw=await fetch(configFilePath);config=await configRaw.json()}else if(ENVIRONMENT_IS_NODE){config=require(configFilePath)}else{config=JSON.parse(read(configFilePath))}Module.config=config}catch(e){Module.config={message:"failed to load config file",error:e}}finally{Module.removeRunDependency(configFilePath)}},mono_wasm_set_timeout_exec:function(id){if(!this.mono_set_timeout_exec)this.mono_set_timeout_exec=Module.cwrap("mono_set_timeout_exec",null,["number"]);this.mono_set_timeout_exec(id)},prevent_timer_throttling:function(){let now=(new Date).valueOf();const desired_reach_time=now+1e3*60*6;const next_reach_time=Math.max(now+1e3,this.spread_timers_maximum);const light_throttling_frequency=1e3;for(var schedule=next_reach_time;schedule{this.mono_wasm_set_timeout_exec(0);MONO.pump_count++;MONO.pump_message()},delay)}this.spread_timers_maximum=desired_reach_time}};function _mono_set_timeout(timeout,id){if(typeof globalThis.setTimeout==="function"){if(MONO.lastScheduleTimeoutId){globalThis.clearTimeout(MONO.lastScheduleTimeoutId);MONO.lastScheduleTimeoutId=undefined}MONO.lastScheduleTimeoutId=globalThis.setTimeout(function mono_wasm_set_timeout_exec(){MONO.mono_wasm_set_timeout_exec(id)},timeout)}else{++MONO.pump_count;MONO.timeout_queue.push(function(){MONO.mono_wasm_set_timeout_exec(id)})}}var BINDING={BINDING_ASM:"[System.Private.Runtime.InteropServices.JavaScript]System.Runtime.InteropServices.JavaScript.Runtime",_cs_owned_objects_by_js_handle:[],_js_handle_free_list:[],_next_js_handle:1,mono_wasm_marshal_enum_as_int:true,mono_bindings_init:function(binding_asm){this.BINDING_ASM=binding_asm},export_functions:function(module){module["mono_bindings_init"]=BINDING.mono_bindings_init.bind(BINDING);module["mono_bind_method"]=BINDING.bind_method.bind(BINDING);module["mono_method_invoke"]=BINDING.call_method.bind(BINDING);module["mono_method_get_call_signature"]=BINDING.mono_method_get_call_signature.bind(BINDING);module["mono_method_resolve"]=BINDING.resolve_method_fqn.bind(BINDING);module["mono_bind_static_method"]=BINDING.bind_static_method.bind(BINDING);module["mono_call_static_method"]=BINDING.call_static_method.bind(BINDING);module["mono_bind_assembly_entry_point"]=BINDING.bind_assembly_entry_point.bind(BINDING);module["mono_call_assembly_entry_point"]=BINDING.call_assembly_entry_point.bind(BINDING);module["mono_intern_string"]=BINDING.mono_intern_string.bind(BINDING)},bindings_lazy_init:function(){if(this.init)return;this.init=true;this.wasm_type_symbol=Symbol.for("wasm type");this.js_owned_gc_handle_symbol=Symbol.for("wasm js_owned_gc_handle");this.cs_owned_js_handle_symbol=Symbol.for("wasm cs_owned_js_handle");this.delegate_invoke_symbol=Symbol.for("wasm delegate_invoke");this.delegate_invoke_signature_symbol=Symbol.for("wasm delegate_invoke_signature");this.listener_registration_count_symbol=Symbol.for("wasm listener_registration_count");Object.prototype[this.wasm_type_symbol]=0;Array.prototype[this.wasm_type_symbol]=1;ArrayBuffer.prototype[this.wasm_type_symbol]=2;DataView.prototype[this.wasm_type_symbol]=3;Function.prototype[this.wasm_type_symbol]=4;Map.prototype[this.wasm_type_symbol]=5;if(typeof SharedArrayBuffer!=="undefined")SharedArrayBuffer.prototype[this.wasm_type_symbol]=6;Int8Array.prototype[this.wasm_type_symbol]=10;Uint8Array.prototype[this.wasm_type_symbol]=11;Uint8ClampedArray.prototype[this.wasm_type_symbol]=12;Int16Array.prototype[this.wasm_type_symbol]=13;Uint16Array.prototype[this.wasm_type_symbol]=14;Int32Array.prototype[this.wasm_type_symbol]=15;Uint32Array.prototype[this.wasm_type_symbol]=16;Float32Array.prototype[this.wasm_type_symbol]=17;Float64Array.prototype[this.wasm_type_symbol]=18;this.assembly_load=Module.cwrap("mono_wasm_assembly_load","number",["string"]);this.find_corlib_class=Module.cwrap("mono_wasm_find_corlib_class","number",["string","string"]);this.find_class=Module.cwrap("mono_wasm_assembly_find_class","number",["number","string","string"]);this._find_method=Module.cwrap("mono_wasm_assembly_find_method","number",["number","string","number"]);this.invoke_method=Module.cwrap("mono_wasm_invoke_method","number",["number","number","number","number"]);this.mono_string_get_utf8=Module.cwrap("mono_wasm_string_get_utf8","number",["number"]);this.mono_wasm_string_from_utf16=Module.cwrap("mono_wasm_string_from_utf16","number",["number","number"]);this.mono_get_obj_type=Module.cwrap("mono_wasm_get_obj_type","number",["number"]);this.mono_array_length=Module.cwrap("mono_wasm_array_length","number",["number"]);this.mono_array_get=Module.cwrap("mono_wasm_array_get","number",["number","number"]);this.mono_obj_array_new=Module.cwrap("mono_wasm_obj_array_new","number",["number"]);this.mono_obj_array_set=Module.cwrap("mono_wasm_obj_array_set","void",["number","number","number"]);this.mono_wasm_register_bundled_satellite_assemblies=Module.cwrap("mono_wasm_register_bundled_satellite_assemblies","void",[]);this.mono_wasm_try_unbox_primitive_and_get_type=Module.cwrap("mono_wasm_try_unbox_primitive_and_get_type","number",["number","number"]);this.mono_wasm_box_primitive=Module.cwrap("mono_wasm_box_primitive","number",["number","number","number"]);this.mono_wasm_intern_string=Module.cwrap("mono_wasm_intern_string","number",["number"]);this.assembly_get_entry_point=Module.cwrap("mono_wasm_assembly_get_entry_point","number",["number"]);this.mono_wasm_get_delegate_invoke=Module.cwrap("mono_wasm_get_delegate_invoke","number",["number"]);this.mono_wasm_string_array_new=Module.cwrap("mono_wasm_string_array_new","number",["number"]);this._box_buffer=Module._malloc(16);this._unbox_buffer=Module._malloc(16);this._class_int32=this.find_corlib_class("System","Int32");this._class_uint32=this.find_corlib_class("System","UInt32");this._class_double=this.find_corlib_class("System","Double");this._class_boolean=this.find_corlib_class("System","Boolean");this.mono_typed_array_new=Module.cwrap("mono_wasm_typed_array_new","number",["number","number","number","number"]);var binding_fqn_asm=this.BINDING_ASM.substring(this.BINDING_ASM.indexOf("[")+1,this.BINDING_ASM.indexOf("]")).trim();var binding_fqn_class=this.BINDING_ASM.substring(this.BINDING_ASM.indexOf("]")+1).trim();this.binding_module=this.assembly_load(binding_fqn_asm);if(!this.binding_module)throw"Can't find bindings module assembly: "+binding_fqn_asm;var namespace=null,classname=null;if(binding_fqn_class!==null&&typeof binding_fqn_class!=="undefined"){namespace="System.Runtime.InteropServices.JavaScript";classname=binding_fqn_class.length>0?binding_fqn_class:"Runtime";if(binding_fqn_class.indexOf(".")!=-1){var idx=binding_fqn_class.lastIndexOf(".");namespace=binding_fqn_class.substring(0,idx);classname=binding_fqn_class.substring(idx+1)}}var wasm_runtime_class=this.find_class(this.binding_module,namespace,classname);if(!wasm_runtime_class)throw"Can't find "+binding_fqn_class+" class";var get_method=function(method_name){var res=BINDING.find_method(wasm_runtime_class,method_name,-1);if(!res)throw"Can't find method "+namespace+"."+classname+":"+method_name;return res};var bind_runtime_method=function(method_name,signature){var method=get_method(method_name);return BINDING.bind_method(method,0,signature,"BINDINGS_"+method_name)};this.get_call_sig=get_method("GetCallSignature");this._get_cs_owned_object_by_js_handle=bind_runtime_method("GetCSOwnedObjectByJSHandle","ii!");this._get_cs_owned_object_js_handle=bind_runtime_method("GetCSOwnedObjectJSHandle","mi");this._try_get_cs_owned_object_js_handle=bind_runtime_method("TryGetCSOwnedObjectJSHandle","mi");this._create_cs_owned_proxy=bind_runtime_method("CreateCSOwnedProxy","iii!");this._get_js_owned_object_by_gc_handle=bind_runtime_method("GetJSOwnedObjectByGCHandle","i!");this._get_js_owned_object_gc_handle=bind_runtime_method("GetJSOwnedObjectGCHandle","m");this._release_js_owned_object_by_gc_handle=bind_runtime_method("ReleaseJSOwnedObjectByGCHandle","i");this._create_tcs=bind_runtime_method("CreateTaskSource","");this._set_tcs_result=bind_runtime_method("SetTaskSourceResult","io");this._set_tcs_failure=bind_runtime_method("SetTaskSourceFailure","is");this._get_tcs_task=bind_runtime_method("GetTaskSourceTask","i!");this._setup_js_cont=bind_runtime_method("SetupJSContinuation","mo");this._object_to_string=bind_runtime_method("ObjectToString","m");this._get_date_value=bind_runtime_method("GetDateValue","m");this._create_date_time=bind_runtime_method("CreateDateTime","d!");this._create_uri=bind_runtime_method("CreateUri","s!");this._is_simple_array=bind_runtime_method("IsSimpleArray","m");this._are_promises_supported=(typeof Promise==="object"||typeof Promise==="function")&&typeof Promise.resolve==="function";this.isThenable=(js_obj=>{return Promise.resolve(js_obj)===js_obj||(typeof js_obj==="object"||typeof js_obj==="function")&&typeof js_obj.then==="function"});this.isChromium=false;if(globalThis.navigator){var nav=globalThis.navigator;if(nav.userAgentData&&nav.userAgentData.brands){this.isChromium=nav.userAgentData.brands.some(i=>i.brand=="Chromium")}else if(globalThis.navigator.userAgent){this.isChromium=nav.userAgent.includes("Chrome")}}this._empty_string="";this._empty_string_ptr=0;this._interned_string_full_root_buffers=[];this._interned_string_current_root_buffer=null;this._interned_string_current_root_buffer_count=0;this._interned_js_string_table=new Map;this._js_owned_object_table=new Map;this._use_finalization_registry=typeof globalThis.FinalizationRegistry==="function";this._use_weak_ref=typeof globalThis.WeakRef==="function";if(this._use_finalization_registry){this._js_owned_object_registry=new globalThis.FinalizationRegistry(this._js_owned_object_finalized.bind(this))}},_js_owned_object_finalized:function(gc_handle){this._js_owned_object_table.delete(gc_handle);this._release_js_owned_object_by_gc_handle(gc_handle)},_lookup_js_owned_object:function(gc_handle){if(!gc_handle)return null;var wr=this._js_owned_object_table.get(gc_handle);if(wr){return wr.deref()}return null},_register_js_owned_object:function(gc_handle,js_obj){var wr;if(this._use_weak_ref){wr=new WeakRef(js_obj)}else{wr={deref:()=>{return js_obj}}}this._js_owned_object_table.set(gc_handle,wr)},_wrap_js_thenable_as_task:function(thenable){this.bindings_lazy_init();if(!thenable)return null;var thenable_js_handle=BINDING.mono_wasm_get_js_handle(thenable);const tcs_gc_handle=this._create_tcs();thenable.then(result=>{this._set_tcs_result(tcs_gc_handle,result);this._mono_wasm_release_js_handle(thenable_js_handle);if(!this._use_finalization_registry){this._release_js_owned_object_by_gc_handle(tcs_gc_handle)}},reason=>{this._set_tcs_failure(tcs_gc_handle,reason?reason.toString():"");this._mono_wasm_release_js_handle(thenable_js_handle);if(!this._use_finalization_registry){this._release_js_owned_object_by_gc_handle(tcs_gc_handle)}});if(this._use_finalization_registry){this._js_owned_object_registry.register(thenable,tcs_gc_handle)}return this._get_tcs_task(tcs_gc_handle)},_unbox_task_root_as_promise:function(root){this.bindings_lazy_init();const self=this;if(root.value===0)return null;if(!this._are_promises_supported)throw new Error("Promises are not supported thus 'System.Threading.Tasks.Task' can not work in this context.");const gc_handle=this._get_js_owned_object_gc_handle(root.value);var result=this._lookup_js_owned_object(gc_handle);if(!result){var cont_obj=null;var result=new Promise(function(resolve,reject){if(self._use_finalization_registry){cont_obj={resolve:resolve,reject:reject}}else{cont_obj={resolve:function(){const res=resolve.apply(null,arguments);self._js_owned_object_table.delete(gc_handle);self._release_js_owned_object_by_gc_handle(gc_handle);return res},reject:function(){const res=reject.apply(null,arguments);self._js_owned_object_table.delete(gc_handle);self._release_js_owned_object_by_gc_handle(gc_handle);return res}}}});this._setup_js_cont(root.value,cont_obj);if(this._use_finalization_registry){this._js_owned_object_registry.register(result,gc_handle)}this._register_js_owned_object(gc_handle,result)}return result},_unbox_ref_type_root_as_js_object:function(root){this.bindings_lazy_init();if(root.value===0)return null;var js_handle=this._try_get_cs_owned_object_js_handle(root.value,false);if(js_handle){if(js_handle===-1){throw new Error("Cannot access a disposed JSObject at "+root.value)}return this.mono_wasm_get_jsobj_from_js_handle(js_handle)}const gc_handle=this._get_js_owned_object_gc_handle(root.value);var result=this._lookup_js_owned_object(gc_handle);if(!result){result={};result[BINDING.js_owned_gc_handle_symbol]=gc_handle;if(this._use_finalization_registry){this._js_owned_object_registry.register(result,gc_handle)}this._register_js_owned_object(gc_handle,result)}return result},_wrap_delegate_root_as_function:function(root){this.bindings_lazy_init();if(root.value===0)return null;const gc_handle=this._get_js_owned_object_gc_handle(root.value);return this._wrap_delegate_gc_handle_as_function(gc_handle)},_wrap_delegate_gc_handle_as_function:function(gc_handle,after_listener_callback){this.bindings_lazy_init();var result=this._lookup_js_owned_object(gc_handle);if(!result){result=function(){const delegateRoot=MONO.mono_wasm_new_root(BINDING.get_js_owned_object_by_gc_handle(gc_handle));try{const res=BINDING.call_method(result[BINDING.delegate_invoke_symbol],delegateRoot.value,result[BINDING.delegate_invoke_signature_symbol],arguments);if(after_listener_callback){after_listener_callback()}return res}finally{delegateRoot.release()}};const delegateRoot=MONO.mono_wasm_new_root(BINDING.get_js_owned_object_by_gc_handle(gc_handle));try{if(typeof result[BINDING.delegate_invoke_symbol]==="undefined"){result[BINDING.delegate_invoke_symbol]=BINDING.mono_wasm_get_delegate_invoke(delegateRoot.value);if(!result[BINDING.delegate_invoke_symbol]){throw new Error("System.Delegate Invoke method can not be resolved.")}}if(typeof result[BINDING.delegate_invoke_signature_symbol]==="undefined"){result[BINDING.delegate_invoke_signature_symbol]=Module.mono_method_get_call_signature(result[BINDING.delegate_invoke_symbol],delegateRoot.value)}}finally{delegateRoot.release()}if(this._use_finalization_registry){this._js_owned_object_registry.register(result,gc_handle)}this._register_js_owned_object(gc_handle,result)}return result},mono_intern_string:function(string){if(string.length===0)return this._empty_string;var ptr=this.js_string_to_mono_string_interned(string);var result=MONO.interned_string_table.get(ptr);return result},_store_string_in_intern_table:function(string,ptr,internIt){if(!ptr)throw new Error("null pointer passed to _store_string_in_intern_table");else if(typeof ptr!=="number")throw new Error(`non-pointer passed to _store_string_in_intern_table: ${typeof ptr}`);const internBufferSize=8192;if(this._interned_string_current_root_buffer_count>=internBufferSize){this._interned_string_full_root_buffers.push(this._interned_string_current_root_buffer);this._interned_string_current_root_buffer=null}if(!this._interned_string_current_root_buffer){this._interned_string_current_root_buffer=MONO.mono_wasm_new_root_buffer(internBufferSize,"interned strings");this._interned_string_current_root_buffer_count=0}var rootBuffer=this._interned_string_current_root_buffer;var index=this._interned_string_current_root_buffer_count++;rootBuffer.set(index,ptr);if(internIt)rootBuffer.set(index,ptr=this.mono_wasm_intern_string(ptr));if(!ptr)throw new Error("mono_wasm_intern_string produced a null pointer");this._interned_js_string_table.set(string,ptr);if(!MONO.interned_string_table)MONO.interned_string_table=new Map;MONO.interned_string_table.set(ptr,string);if(string.length===0&&!this._empty_string_ptr)this._empty_string_ptr=ptr;return ptr},js_string_to_mono_string_interned:function(string){var text=typeof string==="symbol"?string.description||Symbol.keyFor(string)||"":string;if(text.length===0&&this._empty_string_ptr)return this._empty_string_ptr;var ptr=this._interned_js_string_table.get(string);if(ptr)return ptr;ptr=this.js_string_to_mono_string_new(text);ptr=this._store_string_in_intern_table(string,ptr,true);return ptr},js_string_to_mono_string:function(string){if(string===null)return null;else if(typeof string==="symbol")return this.js_string_to_mono_string_interned(string);else if(typeof string!=="string")throw new Error("Expected string argument, got "+typeof string);if(string.length===0)return this.js_string_to_mono_string_interned(string);if(string.length<=256){var interned=this._interned_js_string_table.get(string);if(interned)return interned}return this.js_string_to_mono_string_new(string)},js_string_to_mono_string_new:function(string){var buffer=Module._malloc((string.length+1)*2);var buffer16=buffer/2|0;for(var i=0;i0)return this.mono_wasm_get_jsobj_from_js_handle(js_handle);return null},_get_string_from_intern_table:function(mono_obj){if(!MONO.interned_string_table)return undefined;return MONO.interned_string_table.get(mono_obj)},conv_string:function(mono_obj){return MONO.string_decoder.copy(mono_obj)},is_nested_array:function(ele){return this._is_simple_array(ele)},mono_array_to_js_array:function(mono_array){if(mono_array===0)return null;var arrayRoot=MONO.mono_wasm_new_root(mono_array);try{return this._mono_array_root_to_js_array(arrayRoot)}finally{arrayRoot.release()}},_mono_array_root_to_js_array:function(arrayRoot){if(arrayRoot.value===0)return null;let elemRoot=MONO.mono_wasm_new_root();try{var len=this.mono_array_length(arrayRoot.value);var res=new Array(len);for(var i=0;i>>0===js_obj)result=this._box_js_uint(js_obj);else result=this._box_js_double(js_obj);if(!result)throw new Error(`Boxing failed for ${js_obj}`);return result}case typeof js_obj==="string":return this.js_string_to_mono_string(js_obj);case typeof js_obj==="symbol":return this.js_string_to_mono_string_interned(js_obj);case typeof js_obj==="boolean":return this._box_js_bool(js_obj);case this.isThenable(js_obj)===true:return this._wrap_js_thenable_as_task(js_obj);case js_obj.constructor.name==="Date":return this._create_date_time(js_obj.getTime());default:return this._extract_mono_obj(should_add_in_flight,js_obj)}},_extract_mono_obj:function(should_add_in_flight,js_obj){if(js_obj===null||typeof js_obj==="undefined")return 0;var result=null;if(js_obj[BINDING.js_owned_gc_handle_symbol]){result=this.get_js_owned_object_by_gc_handle(js_obj[BINDING.js_owned_gc_handle_symbol]);return result}if(js_obj[BINDING.cs_owned_js_handle_symbol]){result=this.get_cs_owned_object_by_js_handle(js_obj[BINDING.cs_owned_js_handle_symbol],should_add_in_flight);if(!result){delete js_obj[BINDING.cs_owned_js_handle_symbol]}}if(!result){const wasm_type=js_obj[this.wasm_type_symbol];const wasm_type_id=typeof wasm_type==="undefined"?0:wasm_type;var js_handle=BINDING.mono_wasm_get_js_handle(js_obj);result=this._create_cs_owned_proxy(js_handle,wasm_type_id,should_add_in_flight)}return result},has_backing_array_buffer:function(js_obj){return typeof SharedArrayBuffer!=="undefined"?js_obj.buffer instanceof ArrayBuffer||js_obj.buffer instanceof SharedArrayBuffer:js_obj.buffer instanceof ArrayBuffer},js_typed_array_to_array:function(js_obj){if(!!(this.has_backing_array_buffer(js_obj)&&js_obj.BYTES_PER_ELEMENT)){var arrayType=js_obj[this.wasm_type_symbol];var heapBytes=this.js_typedarray_to_heap(js_obj);var bufferArray=this.mono_typed_array_new(heapBytes.byteOffset,js_obj.length,js_obj.BYTES_PER_ELEMENT,arrayType);Module._free(heapBytes.byteOffset);return bufferArray}else{throw new Error("Object '"+js_obj+"' is not a typed array")}},typedarray_copy_to:function(typed_array,pinned_array,begin,end,bytes_per_element){if(!!(this.has_backing_array_buffer(typed_array)&&typed_array.BYTES_PER_ELEMENT)){if(bytes_per_element!==typed_array.BYTES_PER_ELEMENT)throw new Error("Inconsistent element sizes: TypedArray.BYTES_PER_ELEMENT '"+typed_array.BYTES_PER_ELEMENT+"' sizeof managed element: '"+bytes_per_element+"'");var num_of_bytes=(end-begin)*bytes_per_element;var view_bytes=typed_array.length*typed_array.BYTES_PER_ELEMENT;if(num_of_bytes>view_bytes)num_of_bytes=view_bytes;var offset=begin*bytes_per_element;var heapBytes=new Uint8Array(Module.HEAPU8.buffer,pinned_array+offset,num_of_bytes);heapBytes.set(new Uint8Array(typed_array.buffer,typed_array.byteOffset,num_of_bytes));return num_of_bytes}else{throw new Error("Object '"+typed_array+"' is not a typed array")}},typedarray_copy_from:function(typed_array,pinned_array,begin,end,bytes_per_element){if(!!(this.has_backing_array_buffer(typed_array)&&typed_array.BYTES_PER_ELEMENT)){if(bytes_per_element!==typed_array.BYTES_PER_ELEMENT)throw new Error("Inconsistent element sizes: TypedArray.BYTES_PER_ELEMENT '"+typed_array.BYTES_PER_ELEMENT+"' sizeof managed element: '"+bytes_per_element+"'");var num_of_bytes=(end-begin)*bytes_per_element;var view_bytes=typed_array.length*typed_array.BYTES_PER_ELEMENT;if(num_of_bytes>view_bytes)num_of_bytes=view_bytes;var typedarrayBytes=new Uint8Array(typed_array.buffer,0,num_of_bytes);var offset=begin*bytes_per_element;typedarrayBytes.set(Module.HEAPU8.subarray(pinned_array+offset,pinned_array+offset+num_of_bytes));return num_of_bytes}else{throw new Error("Object '"+typed_array+"' is not a typed array")}},typed_array_from:function(pinned_array,begin,end,bytes_per_element,type){var newTypedArray=0;switch(type){case 5:newTypedArray=new Int8Array(end-begin);break;case 6:newTypedArray=new Uint8Array(end-begin);break;case 7:newTypedArray=new Int16Array(end-begin);break;case 8:newTypedArray=new Uint16Array(end-begin);break;case 9:newTypedArray=new Int32Array(end-begin);break;case 10:newTypedArray=new Uint32Array(end-begin);break;case 13:newTypedArray=new Float32Array(end-begin);break;case 14:newTypedArray=new Float64Array(end-begin);break;case 15:newTypedArray=new Uint8ClampedArray(end-begin);break}this.typedarray_copy_from(newTypedArray,pinned_array,begin,end,bytes_per_element);return newTypedArray},js_to_mono_enum:function(js_obj,method,parmIdx){this.bindings_lazy_init();if(typeof js_obj!=="number")throw new Error(`Expected numeric value for enum argument, got '${js_obj}'`);return js_obj|0},get_js_owned_object_by_gc_handle:function(gc_handle){if(!gc_handle){return 0}return this._get_js_owned_object_by_gc_handle(gc_handle)},get_cs_owned_object_by_js_handle:function(js_handle,should_add_in_flight){if(!js_handle){return 0}return this._get_cs_owned_object_by_js_handle(js_handle,should_add_in_flight)},mono_method_get_call_signature:function(method,mono_obj){let instanceRoot=MONO.mono_wasm_new_root(mono_obj);try{this.bindings_lazy_init();return this.call_method(this.get_call_sig,null,"im",[method,instanceRoot.value])}finally{instanceRoot.release()}},_create_named_function:function(name,argumentNames,body,closure){var result=null,closureArgumentList=null,closureArgumentNames=null;if(closure){closureArgumentNames=Object.keys(closure);closureArgumentList=new Array(closureArgumentNames.length);for(var i=0,l=closureArgumentNames.length;i0;var has_args_marshal=typeof args_marshal==="string";if(has_args){if(!has_args_marshal)throw new Error("No signature provided for method call.");else if(args.length>args_marshal.length)throw new Error("Too many parameter values. Expected at most "+args_marshal.length+" value(s) for signature "+args_marshal)}return has_args_marshal&&has_args},_get_buffer_for_method_call:function(converter){if(!converter)return 0;var result=converter.scratchBuffer;converter.scratchBuffer=0;return result},_get_args_root_buffer_for_method_call:function(converter){if(!converter)return null;if(!converter.needs_root_buffer)return null;var result;if(converter.scratchRootBuffer){result=converter.scratchRootBuffer;converter.scratchRootBuffer=null}else{result=MONO.mono_wasm_new_root_buffer(converter.steps.length);result.converter=converter}return result},_release_args_root_buffer_from_method_call:function(converter,argsRootBuffer){if(!argsRootBuffer||!converter)return;if(!converter.scratchRootBuffer){argsRootBuffer.clear();converter.scratchRootBuffer=argsRootBuffer}else{argsRootBuffer.release()}},_release_buffer_from_method_call:function(converter,buffer){if(!converter||!buffer)return;if(!converter.scratchBuffer)converter.scratchBuffer=buffer|0;else Module._free(buffer|0)},_convert_exception_for_method_call:function(result,exception){if(exception===0)return null;var msg=this.conv_string(result);var err=new Error(msg);return err},_maybe_produce_signature_warning:function(converter){if(converter.has_warned_about_signature)return;console.warn("MONO_WASM: Deprecated raw return value signature: '"+converter.args_marshal+"'. End the signature with '!' instead of 'm'.");converter.has_warned_about_signature=true},_decide_if_result_is_marshaled:function(converter,argc){if(!converter)return true;if(converter.is_result_possibly_unmarshaled&&argc===converter.result_unmarshaled_if_argc){if(argc= ",converter.result_unmarshaled_if_argc,"argument(s) but got",argc,"for signature "+converter.args_marshal].join(" "));this._maybe_produce_signature_warning(converter);return false}else{if(argc0&&Array.isArray(args[0]))args[0]=BINDING.js_array_to_mono_array(args[0],true,false);let result=BINDING.call_method(method,null,signature,args);return Promise.resolve(result)}catch(error){return Promise.reject(error)}}},call_assembly_entry_point:function(assembly,args,signature){return this.bind_assembly_entry_point(assembly,signature)(...args)},mono_wasm_get_jsobj_from_js_handle:function(js_handle){if(js_handle>0)return this._cs_owned_objects_by_js_handle[js_handle];return null},mono_wasm_get_js_handle:function(js_obj){if(js_obj[BINDING.cs_owned_js_handle_symbol]){return js_obj[BINDING.cs_owned_js_handle_symbol]}var js_handle=this._js_handle_free_list.length?this._js_handle_free_list.pop():this._next_js_handle++;this._cs_owned_objects_by_js_handle[js_handle]=js_obj;js_obj[BINDING.cs_owned_js_handle_symbol]=js_handle;return js_handle},_mono_wasm_release_js_handle:function(js_handle){var obj=BINDING._cs_owned_objects_by_js_handle[js_handle];if(typeof obj!=="undefined"&&obj!==null){if(globalThis===obj)return obj;if(typeof obj[BINDING.cs_owned_js_handle_symbol]!=="undefined"){obj[BINDING.cs_owned_js_handle_symbol]=undefined}BINDING._cs_owned_objects_by_js_handle[js_handle]=undefined;BINDING._js_handle_free_list.push(js_handle)}return obj}};function _mono_wasm_add_event_listener(objHandle,name,listener_gc_handle,optionsHandle){var nameRoot=MONO.mono_wasm_new_root(name);try{BINDING.bindings_lazy_init();var sName=BINDING.conv_string(nameRoot.value);var obj=BINDING.mono_wasm_get_jsobj_from_js_handle(objHandle);if(!obj)throw new Error("ERR09: Invalid JS object handle for '"+sName+"'");const prevent_timer_throttling=!BINDING.isChromium||obj.constructor.name!=="WebSocket"?null:()=>MONO.prevent_timer_throttling(0);var listener=BINDING._wrap_delegate_gc_handle_as_function(listener_gc_handle,prevent_timer_throttling);if(!listener)throw new Error("ERR10: Invalid listener gc_handle");var options=optionsHandle?BINDING.mono_wasm_get_jsobj_from_js_handle(optionsHandle):null;if(!BINDING._use_finalization_registry){listener[BINDING.listener_registration_count_symbol]=listener[BINDING.listener_registration_count_symbol]?listener[BINDING.listener_registration_count_symbol]+1:1}if(options)obj.addEventListener(sName,listener,options);else obj.addEventListener(sName,listener);return 0}catch(exc){return BINDING.js_string_to_mono_string(exc.message)}finally{nameRoot.release()}}function _mono_wasm_asm_loaded(assembly_name,assembly_ptr,assembly_len,pdb_ptr,pdb_len){if(MONO.mono_wasm_runtime_is_ready!==true)return;const assembly_name_str=assembly_name!==0?Module.UTF8ToString(assembly_name).concat(".dll"):"";const assembly_data=new Uint8Array(Module.HEAPU8.buffer,assembly_ptr,assembly_len);const assembly_b64=MONO._base64Converter.toBase64StringImpl(assembly_data);let pdb_b64;if(pdb_ptr){const pdb_data=new Uint8Array(Module.HEAPU8.buffer,pdb_ptr,pdb_len);pdb_b64=MONO._base64Converter.toBase64StringImpl(pdb_data)}MONO.mono_wasm_raise_debug_event({eventName:"AssemblyLoaded",assembly_name:assembly_name_str,assembly_b64:assembly_b64,pdb_b64:pdb_b64})}function _mono_wasm_create_cs_owned_object(core_name,args,is_exception){var argsRoot=MONO.mono_wasm_new_root(args),nameRoot=MONO.mono_wasm_new_root(core_name);try{BINDING.bindings_lazy_init();var js_name=BINDING.conv_string(nameRoot.value);if(!js_name){setValue(is_exception,1,"i32");return BINDING.js_string_to_mono_string("Invalid name @"+nameRoot.value)}var coreObj=globalThis[js_name];if(coreObj===null||typeof coreObj==="undefined"){setValue(is_exception,1,"i32");return BINDING.js_string_to_mono_string("JavaScript host object '"+js_name+"' not found.")}var js_args=BINDING._mono_array_root_to_js_array(argsRoot);try{var allocator=function(constructor,js_args){var argsList=new Array;argsList[0]=constructor;if(js_args)argsList=argsList.concat(js_args);var tempCtor=constructor.bind.apply(constructor,argsList);var js_obj=new tempCtor;return js_obj};var js_obj=allocator(coreObj,js_args);var js_handle=BINDING.mono_wasm_get_js_handle(js_obj);return BINDING._js_to_mono_obj(false,js_handle)}catch(e){var res=e.toString();setValue(is_exception,1,"i32");if(res===null||res===undefined)res="Error allocating object.";return BINDING.js_string_to_mono_string(res)}}finally{argsRoot.release();nameRoot.release()}}function _mono_wasm_fire_debugger_agent_message(){debugger}function _mono_wasm_get_by_index(js_handle,property_index,is_exception){BINDING.bindings_lazy_init();var obj=BINDING.mono_wasm_get_jsobj_from_js_handle(js_handle);if(!obj){setValue(is_exception,1,"i32");return BINDING.js_string_to_mono_string("ERR03: Invalid JS object handle '"+js_handle+"' while getting ["+property_index+"]")}try{var m=obj[property_index];return BINDING._js_to_mono_obj(true,m)}catch(e){var res=e.toString();setValue(is_exception,1,"i32");if(res===null||typeof res==="undefined")res="unknown exception";return BINDING.js_string_to_mono_string(res)}}function _mono_wasm_get_global_object(global_name,is_exception){var nameRoot=MONO.mono_wasm_new_root(global_name);try{BINDING.bindings_lazy_init();var js_name=BINDING.conv_string(nameRoot.value);var globalObj;if(!js_name){globalObj=globalThis}else{globalObj=globalThis[js_name]}if(globalObj===null||typeof globalObj===undefined){setValue(is_exception,1,"i32");return BINDING.js_string_to_mono_string("Global object '"+js_name+"' not found.")}return BINDING._js_to_mono_obj(true,globalObj)}finally{nameRoot.release()}}function _mono_wasm_get_object_property(js_handle,property_name,is_exception){BINDING.bindings_lazy_init();var nameRoot=MONO.mono_wasm_new_root(property_name);try{var js_name=BINDING.conv_string(nameRoot.value);if(!js_name){setValue(is_exception,1,"i32");return BINDING.js_string_to_mono_string("Invalid property name object '"+nameRoot.value+"'")}var obj=BINDING.mono_wasm_get_jsobj_from_js_handle(js_handle);if(!obj){setValue(is_exception,1,"i32");return BINDING.js_string_to_mono_string("ERR01: Invalid JS object handle '"+js_handle+"' while geting '"+js_name+"'")}var res;try{var m=obj[js_name];return BINDING._js_to_mono_obj(true,m)}catch(e){var res=e.toString();setValue(is_exception,1,"i32");if(res===null||typeof res==="undefined")res="unknown exception";return BINDING.js_string_to_mono_string(res)}}finally{nameRoot.release()}}var DOTNET={conv_string:function(mono_obj){return MONO.string_decoder.copy(mono_obj)}};function _mono_wasm_invoke_js_blazor(exceptionMessage,callInfo,arg0,arg1,arg2){var mono_string=globalThis._mono_string_cached||(globalThis._mono_string_cached=Module.cwrap("mono_wasm_string_from_js","number",["string"]));try{var blazorExports=globalThis.Blazor;if(!blazorExports){throw new Error("The blazor.webassembly.js library is not loaded.")}return blazorExports._internal.invokeJSFromDotNet(callInfo,arg0,arg1,arg2)}catch(ex){var exceptionJsString=ex.message+"\n"+ex.stack;var exceptionSystemString=mono_string(exceptionJsString);setValue(exceptionMessage,exceptionSystemString,"i32");return 0}}function _mono_wasm_invoke_js_marshalled(exceptionMessage,asyncHandleLongPtr,functionName,argsJson,treatResultAsVoid){var mono_string=globalThis._mono_string_cached||(globalThis._mono_string_cached=Module.cwrap("mono_wasm_string_from_js","number",["string"]));try{var u32Index=asyncHandleLongPtr>>2;var asyncHandleJsNumber=Module.HEAPU32[u32Index+1]*4294967296+Module.HEAPU32[u32Index];var funcNameJsString=DOTNET.conv_string(functionName);var argsJsonJsString=argsJson&&DOTNET.conv_string(argsJson);var dotNetExports=globaThis.DotNet;if(!dotNetExports){throw new Error("The Microsoft.JSInterop.js library is not loaded.")}if(asyncHandleJsNumber){dotNetExports.jsCallDispatcher.beginInvokeJSFromDotNet(asyncHandleJsNumber,funcNameJsString,argsJsonJsString,treatResultAsVoid);return 0}else{var resultJson=dotNetExports.jsCallDispatcher.invokeJSFromDotNet(funcNameJsString,argsJsonJsString,treatResultAsVoid);return resultJson===null?0:mono_string(resultJson)}}catch(ex){var exceptionJsString=ex.message+"\n"+ex.stack;var exceptionSystemString=mono_string(exceptionJsString);setValue(exceptionMessage,exceptionSystemString,"i32");return 0}}function _mono_wasm_invoke_js_unmarshalled(exceptionMessage,funcName,arg0,arg1,arg2){try{var funcNameJsString=DOTNET.conv_string(funcName);var dotNetExports=globalThis.DotNet;if(!dotNetExports){throw new Error("The Microsoft.JSInterop.js library is not loaded.")}var funcInstance=dotNetExports.jsCallDispatcher.findJSFunction(funcNameJsString);return funcInstance.call(null,arg0,arg1,arg2)}catch(ex){var exceptionJsString=ex.message+"\n"+ex.stack;var mono_string=Module.cwrap("mono_wasm_string_from_js","number",["string"]);var exceptionSystemString=mono_string(exceptionJsString);setValue(exceptionMessage,exceptionSystemString,"i32");return 0}}function _mono_wasm_invoke_js_with_args(js_handle,method_name,args,is_exception){let argsRoot=MONO.mono_wasm_new_root(args),nameRoot=MONO.mono_wasm_new_root(method_name);try{BINDING.bindings_lazy_init();var js_name=BINDING.conv_string(nameRoot.value);if(!js_name||typeof js_name!=="string"){setValue(is_exception,1,"i32");return BINDING.js_string_to_mono_string("ERR12: Invalid method name object '"+nameRoot.value+"'")}var obj=BINDING.get_js_obj(js_handle);if(!obj){setValue(is_exception,1,"i32");return BINDING.js_string_to_mono_string("ERR13: Invalid JS object handle '"+js_handle+"' while invoking '"+js_name+"'")}var js_args=BINDING._mono_array_root_to_js_array(argsRoot);var res;try{var m=obj[js_name];if(typeof m==="undefined")throw new Error("Method: '"+js_name+"' not found for: '"+Object.prototype.toString.call(obj)+"'");var res=m.apply(obj,js_args);return BINDING._js_to_mono_obj(true,res)}catch(e){var res=e.toString();setValue(is_exception,1,"i32");if(res===null||res===undefined)res="unknown exception";return BINDING.js_string_to_mono_string(res)}}finally{argsRoot.release();nameRoot.release()}}function _mono_wasm_release_cs_owned_object(js_handle){BINDING.bindings_lazy_init();BINDING._mono_wasm_release_js_handle(js_handle)}function _mono_wasm_remove_event_listener(objHandle,name,listener_gc_handle,capture){var nameRoot=MONO.mono_wasm_new_root(name);try{BINDING.bindings_lazy_init();var obj=BINDING.mono_wasm_get_jsobj_from_js_handle(objHandle);if(!obj)throw new Error("ERR11: Invalid JS object handle");var listener=BINDING._lookup_js_owned_object(listener_gc_handle);if(!listener)return;var sName=BINDING.conv_string(nameRoot.value);obj.removeEventListener(sName,listener,!!capture);if(!BINDING._use_finalization_registry){listener[BINDING.listener_registration_count_symbol]--;if(listener[BINDING.listener_registration_count_symbol]===0){BINDING._js_owned_object_table.delete(listener_gc_handle);BINDING._release_js_owned_object_by_gc_handle(listener_gc_handle)}}return 0}catch(exc){return BINDING.js_string_to_mono_string(exc.message)}finally{nameRoot.release()}}function _mono_wasm_set_by_index(js_handle,property_index,value,is_exception){var valueRoot=MONO.mono_wasm_new_root(value);try{BINDING.bindings_lazy_init();var obj=BINDING.mono_wasm_get_jsobj_from_js_handle(js_handle);if(!obj){setValue(is_exception,1,"i32");return BINDING.js_string_to_mono_string("ERR04: Invalid JS object handle '"+js_handle+"' while setting ["+property_index+"]")}var js_value=BINDING._unbox_mono_obj_root(valueRoot);try{obj[property_index]=js_value;return true}catch(e){var res=e.toString();setValue(is_exception,1,"i32");if(res===null||typeof res==="undefined")res="unknown exception";return BINDING.js_string_to_mono_string(res)}}finally{valueRoot.release()}}function _mono_wasm_set_object_property(js_handle,property_name,value,createIfNotExist,hasOwnProperty,is_exception){var valueRoot=MONO.mono_wasm_new_root(value),nameRoot=MONO.mono_wasm_new_root(property_name);try{BINDING.bindings_lazy_init();var property=BINDING.conv_string(nameRoot.value);if(!property){setValue(is_exception,1,"i32");return BINDING.js_string_to_mono_string("Invalid property name object '"+property_name+"'")}var js_obj=BINDING.mono_wasm_get_jsobj_from_js_handle(js_handle);if(!js_obj){setValue(is_exception,1,"i32");return BINDING.js_string_to_mono_string("ERR02: Invalid JS object handle '"+js_handle+"' while setting '"+property+"'")}var result=false;var js_value=BINDING._unbox_mono_obj_root(valueRoot);if(createIfNotExist){js_obj[property]=js_value;result=true}else{result=false;if(!createIfNotExist){if(!js_obj.hasOwnProperty(property))return false}if(hasOwnProperty===true){if(js_obj.hasOwnProperty(property)){js_obj[property]=js_value;result=true}}else{js_obj[property]=js_value;result=true}}return BINDING._box_js_bool(result)}finally{nameRoot.release();valueRoot.release()}}function _mono_wasm_typed_array_copy_from(js_handle,pinned_array,begin,end,bytes_per_element,is_exception){BINDING.bindings_lazy_init();var js_obj=BINDING.mono_wasm_get_jsobj_from_js_handle(js_handle);if(!js_obj){setValue(is_exception,1,"i32");return BINDING.js_string_to_mono_string("ERR08: Invalid JS object handle '"+js_handle+"'")}var res=BINDING.typedarray_copy_from(js_obj,pinned_array,begin,end,bytes_per_element);return BINDING._js_to_mono_obj(false,res)}function _mono_wasm_typed_array_copy_to(js_handle,pinned_array,begin,end,bytes_per_element,is_exception){BINDING.bindings_lazy_init();var js_obj=BINDING.mono_wasm_get_jsobj_from_js_handle(js_handle);if(!js_obj){setValue(is_exception,1,"i32");return BINDING.js_string_to_mono_string("ERR07: Invalid JS object handle '"+js_handle+"'")}var res=BINDING.typedarray_copy_to(js_obj,pinned_array,begin,end,bytes_per_element);return BINDING._js_to_mono_obj(false,res)}function _mono_wasm_typed_array_from(pinned_array,begin,end,bytes_per_element,type,is_exception){BINDING.bindings_lazy_init();var res=BINDING.typed_array_from(pinned_array,begin,end,bytes_per_element,type);return BINDING._js_to_mono_obj(true,res)}function _mono_wasm_typed_array_to_array(js_handle,is_exception){BINDING.bindings_lazy_init();var js_obj=BINDING.mono_wasm_get_jsobj_from_js_handle(js_handle);if(!js_obj){setValue(is_exception,1,"i32");return BINDING.js_string_to_mono_string("ERR06: Invalid JS object handle '"+js_handle+"'")}return BINDING.js_typed_array_to_array(js_obj,false)}function _schedule_background_exec(){++MONO.pump_count;if(typeof globalThis.setTimeout==="function"){globalThis.setTimeout(MONO.pump_message,0)}}function _setTempRet0(val){setTempRet0(val)}function __isLeapYear(year){return year%4===0&&(year%100!==0||year%400===0)}function __arraySum(array,index){var sum=0;for(var i=0;i<=index;sum+=array[i++]){}return sum}var __MONTH_DAYS_LEAP=[31,29,31,30,31,30,31,31,30,31,30,31];var __MONTH_DAYS_REGULAR=[31,28,31,30,31,30,31,31,30,31,30,31];function __addDays(date,days){var newDate=new Date(date.getTime());while(days>0){var leap=__isLeapYear(newDate.getFullYear());var currentMonth=newDate.getMonth();var daysInCurrentMonth=(leap?__MONTH_DAYS_LEAP:__MONTH_DAYS_REGULAR)[currentMonth];if(days>daysInCurrentMonth-newDate.getDate()){days-=daysInCurrentMonth-newDate.getDate()+1;newDate.setDate(1);if(currentMonth<11){newDate.setMonth(currentMonth+1)}else{newDate.setMonth(0);newDate.setFullYear(newDate.getFullYear()+1)}}else{newDate.setDate(newDate.getDate()+days);return newDate}}return newDate}function _strftime(s,maxsize,format,tm){var tm_zone=HEAP32[tm+40>>2];var date={tm_sec:HEAP32[tm>>2],tm_min:HEAP32[tm+4>>2],tm_hour:HEAP32[tm+8>>2],tm_mday:HEAP32[tm+12>>2],tm_mon:HEAP32[tm+16>>2],tm_year:HEAP32[tm+20>>2],tm_wday:HEAP32[tm+24>>2],tm_yday:HEAP32[tm+28>>2],tm_isdst:HEAP32[tm+32>>2],tm_gmtoff:HEAP32[tm+36>>2],tm_zone:tm_zone?UTF8ToString(tm_zone):""};var pattern=UTF8ToString(format);var EXPANSION_RULES_1={"%c":"%a %b %d %H:%M:%S %Y","%D":"%m/%d/%y","%F":"%Y-%m-%d","%h":"%b","%r":"%I:%M:%S %p","%R":"%H:%M","%T":"%H:%M:%S","%x":"%m/%d/%y","%X":"%H:%M:%S","%Ec":"%c","%EC":"%C","%Ex":"%m/%d/%y","%EX":"%H:%M:%S","%Ey":"%y","%EY":"%Y","%Od":"%d","%Oe":"%e","%OH":"%H","%OI":"%I","%Om":"%m","%OM":"%M","%OS":"%S","%Ou":"%u","%OU":"%U","%OV":"%V","%Ow":"%w","%OW":"%W","%Oy":"%y"};for(var rule in EXPANSION_RULES_1){pattern=pattern.replace(new RegExp(rule,"g"),EXPANSION_RULES_1[rule])}var WEEKDAYS=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"];var MONTHS=["January","February","March","April","May","June","July","August","September","October","November","December"];function leadingSomething(value,digits,character){var str=typeof value==="number"?value.toString():value||"";while(str.length0?1:0}var compare;if((compare=sgn(date1.getFullYear()-date2.getFullYear()))===0){if((compare=sgn(date1.getMonth()-date2.getMonth()))===0){compare=sgn(date1.getDate()-date2.getDate())}}return compare}function getFirstWeekStartDate(janFourth){switch(janFourth.getDay()){case 0:return new Date(janFourth.getFullYear()-1,11,29);case 1:return janFourth;case 2:return new Date(janFourth.getFullYear(),0,3);case 3:return new Date(janFourth.getFullYear(),0,2);case 4:return new Date(janFourth.getFullYear(),0,1);case 5:return new Date(janFourth.getFullYear()-1,11,31);case 6:return new Date(janFourth.getFullYear()-1,11,30)}}function getWeekBasedYear(date){var thisDate=__addDays(new Date(date.tm_year+1900,0,1),date.tm_yday);var janFourthThisYear=new Date(thisDate.getFullYear(),0,4);var janFourthNextYear=new Date(thisDate.getFullYear()+1,0,4);var firstWeekStartThisYear=getFirstWeekStartDate(janFourthThisYear);var firstWeekStartNextYear=getFirstWeekStartDate(janFourthNextYear);if(compareByDay(firstWeekStartThisYear,thisDate)<=0){if(compareByDay(firstWeekStartNextYear,thisDate)<=0){return thisDate.getFullYear()+1}else{return thisDate.getFullYear()}}else{return thisDate.getFullYear()-1}}var EXPANSION_RULES_2={"%a":function(date){return WEEKDAYS[date.tm_wday].substring(0,3)},"%A":function(date){return WEEKDAYS[date.tm_wday]},"%b":function(date){return MONTHS[date.tm_mon].substring(0,3)},"%B":function(date){return MONTHS[date.tm_mon]},"%C":function(date){var year=date.tm_year+1900;return leadingNulls(year/100|0,2)},"%d":function(date){return leadingNulls(date.tm_mday,2)},"%e":function(date){return leadingSomething(date.tm_mday,2," ")},"%g":function(date){return getWeekBasedYear(date).toString().substring(2)},"%G":function(date){return getWeekBasedYear(date)},"%H":function(date){return leadingNulls(date.tm_hour,2)},"%I":function(date){var twelveHour=date.tm_hour;if(twelveHour==0)twelveHour=12;else if(twelveHour>12)twelveHour-=12;return leadingNulls(twelveHour,2)},"%j":function(date){return leadingNulls(date.tm_mday+__arraySum(__isLeapYear(date.tm_year+1900)?__MONTH_DAYS_LEAP:__MONTH_DAYS_REGULAR,date.tm_mon-1),3)},"%m":function(date){return leadingNulls(date.tm_mon+1,2)},"%M":function(date){return leadingNulls(date.tm_min,2)},"%n":function(){return"\n"},"%p":function(date){if(date.tm_hour>=0&&date.tm_hour<12){return"AM"}else{return"PM"}},"%S":function(date){return leadingNulls(date.tm_sec,2)},"%t":function(){return"\t"},"%u":function(date){return date.tm_wday||7},"%U":function(date){var janFirst=new Date(date.tm_year+1900,0,1);var firstSunday=janFirst.getDay()===0?janFirst:__addDays(janFirst,7-janFirst.getDay());var endDate=new Date(date.tm_year+1900,date.tm_mon,date.tm_mday);if(compareByDay(firstSunday,endDate)<0){var februaryFirstUntilEndMonth=__arraySum(__isLeapYear(endDate.getFullYear())?__MONTH_DAYS_LEAP:__MONTH_DAYS_REGULAR,endDate.getMonth()-1)-31;var firstSundayUntilEndJanuary=31-firstSunday.getDate();var days=firstSundayUntilEndJanuary+februaryFirstUntilEndMonth+endDate.getDate();return leadingNulls(Math.ceil(days/7),2)}return compareByDay(firstSunday,janFirst)===0?"01":"00"},"%V":function(date){var janFourthThisYear=new Date(date.tm_year+1900,0,4);var janFourthNextYear=new Date(date.tm_year+1901,0,4);var firstWeekStartThisYear=getFirstWeekStartDate(janFourthThisYear);var firstWeekStartNextYear=getFirstWeekStartDate(janFourthNextYear);var endDate=__addDays(new Date(date.tm_year+1900,0,1),date.tm_yday);if(compareByDay(endDate,firstWeekStartThisYear)<0){return"53"}if(compareByDay(firstWeekStartNextYear,endDate)<=0){return"01"}var daysDifference;if(firstWeekStartThisYear.getFullYear()=0;off=Math.abs(off)/60;off=off/60*100+off%60;return(ahead?"+":"-")+String("0000"+off).slice(-4)},"%Z":function(date){return date.tm_zone},"%%":function(){return"%"}};for(var rule in EXPANSION_RULES_2){if(pattern.includes(rule)){pattern=pattern.replace(new RegExp(rule,"g"),EXPANSION_RULES_2[rule](date))}}var bytes=intArrayFromString(pattern,false);if(bytes.length>maxsize){return 0}writeArrayToMemory(bytes,s);return bytes.length-1}function _time(ptr){var ret=Date.now()/1e3|0;if(ptr){HEAP32[ptr>>2]=ret}return ret}var FSNode=function(parent,name,mode,rdev){if(!parent){parent=this}this.parent=parent;this.mount=parent.mount;this.mounted=null;this.id=FS.nextInode++;this.name=name;this.mode=mode;this.node_ops={};this.stream_ops={};this.rdev=rdev};var readMode=292|73;var writeMode=146;Object.defineProperties(FSNode.prototype,{read:{get:function(){return(this.mode&readMode)===readMode},set:function(val){val?this.mode|=readMode:this.mode&=~readMode}},write:{get:function(){return(this.mode&writeMode)===writeMode},set:function(val){val?this.mode|=writeMode:this.mode&=~writeMode}},isFolder:{get:function(){return FS.isDir(this.mode)}},isDevice:{get:function(){return FS.isChrdev(this.mode)}}});FS.FSNode=FSNode;FS.staticInit();Module["FS_createPath"]=FS.createPath;Module["FS_createDataFile"]=FS.createDataFile;Module["FS_createPath"]=FS.createPath;Module["FS_createDataFile"]=FS.createDataFile;Module["FS_createPreloadedFile"]=FS.createPreloadedFile;Module["FS_createLazyFile"]=FS.createLazyFile;Module["FS_createDevice"]=FS.createDevice;Module["FS_unlink"]=FS.unlink;MONO.export_functions(Module);BINDING.export_functions(Module);var ASSERTIONS=false;function intArrayFromString(stringy,dontAddNull,length){var len=length>0?length:lengthBytesUTF8(stringy)+1;var u8array=new Array(len);var numBytesWritten=stringToUTF8Array(stringy,u8array,0,u8array.length);if(dontAddNull)u8array.length=numBytesWritten;return u8array}var asmLibraryArg={"__assert_fail":___assert_fail,"__clock_gettime":___clock_gettime,"__cxa_allocate_exception":___cxa_allocate_exception,"__cxa_begin_catch":___cxa_begin_catch,"__cxa_end_catch":___cxa_end_catch,"__cxa_find_matching_catch_3":___cxa_find_matching_catch_3,"__cxa_throw":___cxa_throw,"__resumeException":___resumeException,"__sys_access":___sys_access,"__sys_chdir":___sys_chdir,"__sys_chmod":___sys_chmod,"__sys_connect":___sys_connect,"__sys_fadvise64_64":___sys_fadvise64_64,"__sys_fchmod":___sys_fchmod,"__sys_fcntl64":___sys_fcntl64,"__sys_fstat64":___sys_fstat64,"__sys_fstatfs64":___sys_fstatfs64,"__sys_ftruncate64":___sys_ftruncate64,"__sys_getcwd":___sys_getcwd,"__sys_getdents64":___sys_getdents64,"__sys_getpid":___sys_getpid,"__sys_getrusage":___sys_getrusage,"__sys_ioctl":___sys_ioctl,"__sys_link":___sys_link,"__sys_lstat64":___sys_lstat64,"__sys_madvise1":___sys_madvise1,"__sys_mkdir":___sys_mkdir,"__sys_mmap2":___sys_mmap2,"__sys_msync":___sys_msync,"__sys_munmap":___sys_munmap,"__sys_open":___sys_open,"__sys_readlink":___sys_readlink,"__sys_recvfrom":___sys_recvfrom,"__sys_rename":___sys_rename,"__sys_rmdir":___sys_rmdir,"__sys_sendto":___sys_sendto,"__sys_setsockopt":___sys_setsockopt,"__sys_shutdown":___sys_shutdown,"__sys_socket":___sys_socket,"__sys_stat64":___sys_stat64,"__sys_symlink":___sys_symlink,"__sys_unlink":___sys_unlink,"__sys_utimensat":___sys_utimensat,"abort":_abort,"clock_getres":_clock_getres,"clock_gettime":_clock_gettime,"compile_function":compile_function,"difftime":_difftime,"dotnet_browser_entropy":_dotnet_browser_entropy,"emscripten_asm_const_int":_emscripten_asm_const_int,"emscripten_get_heap_max":_emscripten_get_heap_max,"emscripten_memcpy_big":_emscripten_memcpy_big,"emscripten_resize_heap":_emscripten_resize_heap,"emscripten_thread_sleep":_emscripten_thread_sleep,"environ_get":_environ_get,"environ_sizes_get":_environ_sizes_get,"exit":_exit,"fd_close":_fd_close,"fd_fdstat_get":_fd_fdstat_get,"fd_pread":_fd_pread,"fd_pwrite":_fd_pwrite,"fd_read":_fd_read,"fd_seek":_fd_seek,"fd_sync":_fd_sync,"fd_write":_fd_write,"flock":_flock,"gai_strerror":_gai_strerror,"getTempRet0":_getTempRet0,"gettimeofday":_gettimeofday,"gmtime_r":_gmtime_r,"invoke_vi":invoke_vi,"llvm_eh_typeid_for":_llvm_eh_typeid_for,"localtime_r":_localtime_r,"mono_set_timeout":_mono_set_timeout,"mono_wasm_add_event_listener":_mono_wasm_add_event_listener,"mono_wasm_asm_loaded":_mono_wasm_asm_loaded,"mono_wasm_create_cs_owned_object":_mono_wasm_create_cs_owned_object,"mono_wasm_fire_debugger_agent_message":_mono_wasm_fire_debugger_agent_message,"mono_wasm_get_by_index":_mono_wasm_get_by_index,"mono_wasm_get_global_object":_mono_wasm_get_global_object,"mono_wasm_get_object_property":_mono_wasm_get_object_property,"mono_wasm_invoke_js_blazor":_mono_wasm_invoke_js_blazor,"mono_wasm_invoke_js_marshalled":_mono_wasm_invoke_js_marshalled,"mono_wasm_invoke_js_unmarshalled":_mono_wasm_invoke_js_unmarshalled,"mono_wasm_invoke_js_with_args":_mono_wasm_invoke_js_with_args,"mono_wasm_release_cs_owned_object":_mono_wasm_release_cs_owned_object,"mono_wasm_remove_event_listener":_mono_wasm_remove_event_listener,"mono_wasm_set_by_index":_mono_wasm_set_by_index,"mono_wasm_set_object_property":_mono_wasm_set_object_property,"mono_wasm_typed_array_copy_from":_mono_wasm_typed_array_copy_from,"mono_wasm_typed_array_copy_to":_mono_wasm_typed_array_copy_to,"mono_wasm_typed_array_from":_mono_wasm_typed_array_from,"mono_wasm_typed_array_to_array":_mono_wasm_typed_array_to_array,"schedule_background_exec":_schedule_background_exec,"setTempRet0":_setTempRet0,"strftime":_strftime,"time":_time,"tzset":_tzset};var asm=createWasm();var ___wasm_call_ctors=Module["___wasm_call_ctors"]=function(){return(___wasm_call_ctors=Module["___wasm_call_ctors"]=Module["asm"]["__wasm_call_ctors"]).apply(null,arguments)};var _mono_wasm_register_root=Module["_mono_wasm_register_root"]=function(){return(_mono_wasm_register_root=Module["_mono_wasm_register_root"]=Module["asm"]["mono_wasm_register_root"]).apply(null,arguments)};var _mono_wasm_deregister_root=Module["_mono_wasm_deregister_root"]=function(){return(_mono_wasm_deregister_root=Module["_mono_wasm_deregister_root"]=Module["asm"]["mono_wasm_deregister_root"]).apply(null,arguments)};var _mono_wasm_add_assembly=Module["_mono_wasm_add_assembly"]=function(){return(_mono_wasm_add_assembly=Module["_mono_wasm_add_assembly"]=Module["asm"]["mono_wasm_add_assembly"]).apply(null,arguments)};var _mono_wasm_add_satellite_assembly=Module["_mono_wasm_add_satellite_assembly"]=function(){return(_mono_wasm_add_satellite_assembly=Module["_mono_wasm_add_satellite_assembly"]=Module["asm"]["mono_wasm_add_satellite_assembly"]).apply(null,arguments)};var _mono_wasm_setenv=Module["_mono_wasm_setenv"]=function(){return(_mono_wasm_setenv=Module["_mono_wasm_setenv"]=Module["asm"]["mono_wasm_setenv"]).apply(null,arguments)};var _free=Module["_free"]=function(){return(_free=Module["_free"]=Module["asm"]["free"]).apply(null,arguments)};var _mono_wasm_register_bundled_satellite_assemblies=Module["_mono_wasm_register_bundled_satellite_assemblies"]=function(){return(_mono_wasm_register_bundled_satellite_assemblies=Module["_mono_wasm_register_bundled_satellite_assemblies"]=Module["asm"]["mono_wasm_register_bundled_satellite_assemblies"]).apply(null,arguments)};var _mono_wasm_load_runtime=Module["_mono_wasm_load_runtime"]=function(){return(_mono_wasm_load_runtime=Module["_mono_wasm_load_runtime"]=Module["asm"]["mono_wasm_load_runtime"]).apply(null,arguments)};var _malloc=Module["_malloc"]=function(){return(_malloc=Module["_malloc"]=Module["asm"]["malloc"]).apply(null,arguments)};var _mono_wasm_assembly_load=Module["_mono_wasm_assembly_load"]=function(){return(_mono_wasm_assembly_load=Module["_mono_wasm_assembly_load"]=Module["asm"]["mono_wasm_assembly_load"]).apply(null,arguments)};var _mono_wasm_find_corlib_class=Module["_mono_wasm_find_corlib_class"]=function(){return(_mono_wasm_find_corlib_class=Module["_mono_wasm_find_corlib_class"]=Module["asm"]["mono_wasm_find_corlib_class"]).apply(null,arguments)};var _mono_wasm_assembly_find_class=Module["_mono_wasm_assembly_find_class"]=function(){return(_mono_wasm_assembly_find_class=Module["_mono_wasm_assembly_find_class"]=Module["asm"]["mono_wasm_assembly_find_class"]).apply(null,arguments)};var _mono_wasm_assembly_find_method=Module["_mono_wasm_assembly_find_method"]=function(){return(_mono_wasm_assembly_find_method=Module["_mono_wasm_assembly_find_method"]=Module["asm"]["mono_wasm_assembly_find_method"]).apply(null,arguments)};var _mono_wasm_get_delegate_invoke=Module["_mono_wasm_get_delegate_invoke"]=function(){return(_mono_wasm_get_delegate_invoke=Module["_mono_wasm_get_delegate_invoke"]=Module["asm"]["mono_wasm_get_delegate_invoke"]).apply(null,arguments)};var _mono_wasm_box_primitive=Module["_mono_wasm_box_primitive"]=function(){return(_mono_wasm_box_primitive=Module["_mono_wasm_box_primitive"]=Module["asm"]["mono_wasm_box_primitive"]).apply(null,arguments)};var _mono_wasm_invoke_method=Module["_mono_wasm_invoke_method"]=function(){return(_mono_wasm_invoke_method=Module["_mono_wasm_invoke_method"]=Module["asm"]["mono_wasm_invoke_method"]).apply(null,arguments)};var _mono_wasm_assembly_get_entry_point=Module["_mono_wasm_assembly_get_entry_point"]=function(){return(_mono_wasm_assembly_get_entry_point=Module["_mono_wasm_assembly_get_entry_point"]=Module["asm"]["mono_wasm_assembly_get_entry_point"]).apply(null,arguments)};var _mono_wasm_string_get_utf8=Module["_mono_wasm_string_get_utf8"]=function(){return(_mono_wasm_string_get_utf8=Module["_mono_wasm_string_get_utf8"]=Module["asm"]["mono_wasm_string_get_utf8"]).apply(null,arguments)};var _mono_wasm_string_convert=Module["_mono_wasm_string_convert"]=function(){return(_mono_wasm_string_convert=Module["_mono_wasm_string_convert"]=Module["asm"]["mono_wasm_string_convert"]).apply(null,arguments)};var _mono_wasm_string_from_js=Module["_mono_wasm_string_from_js"]=function(){return(_mono_wasm_string_from_js=Module["_mono_wasm_string_from_js"]=Module["asm"]["mono_wasm_string_from_js"]).apply(null,arguments)};var _mono_wasm_string_from_utf16=Module["_mono_wasm_string_from_utf16"]=function(){return(_mono_wasm_string_from_utf16=Module["_mono_wasm_string_from_utf16"]=Module["asm"]["mono_wasm_string_from_utf16"]).apply(null,arguments)};var _mono_wasm_get_obj_type=Module["_mono_wasm_get_obj_type"]=function(){return(_mono_wasm_get_obj_type=Module["_mono_wasm_get_obj_type"]=Module["asm"]["mono_wasm_get_obj_type"]).apply(null,arguments)};var _mono_wasm_try_unbox_primitive_and_get_type=Module["_mono_wasm_try_unbox_primitive_and_get_type"]=function(){return(_mono_wasm_try_unbox_primitive_and_get_type=Module["_mono_wasm_try_unbox_primitive_and_get_type"]=Module["asm"]["mono_wasm_try_unbox_primitive_and_get_type"]).apply(null,arguments)};var _mono_unbox_int=Module["_mono_unbox_int"]=function(){return(_mono_unbox_int=Module["_mono_unbox_int"]=Module["asm"]["mono_unbox_int"]).apply(null,arguments)};var _mono_wasm_array_length=Module["_mono_wasm_array_length"]=function(){return(_mono_wasm_array_length=Module["_mono_wasm_array_length"]=Module["asm"]["mono_wasm_array_length"]).apply(null,arguments)};var _mono_wasm_array_get=Module["_mono_wasm_array_get"]=function(){return(_mono_wasm_array_get=Module["_mono_wasm_array_get"]=Module["asm"]["mono_wasm_array_get"]).apply(null,arguments)};var _mono_wasm_obj_array_new=Module["_mono_wasm_obj_array_new"]=function(){return(_mono_wasm_obj_array_new=Module["_mono_wasm_obj_array_new"]=Module["asm"]["mono_wasm_obj_array_new"]).apply(null,arguments)};var _mono_wasm_obj_array_set=Module["_mono_wasm_obj_array_set"]=function(){return(_mono_wasm_obj_array_set=Module["_mono_wasm_obj_array_set"]=Module["asm"]["mono_wasm_obj_array_set"]).apply(null,arguments)};var _mono_wasm_string_array_new=Module["_mono_wasm_string_array_new"]=function(){return(_mono_wasm_string_array_new=Module["_mono_wasm_string_array_new"]=Module["asm"]["mono_wasm_string_array_new"]).apply(null,arguments)};var _mono_wasm_exec_regression=Module["_mono_wasm_exec_regression"]=function(){return(_mono_wasm_exec_regression=Module["_mono_wasm_exec_regression"]=Module["asm"]["mono_wasm_exec_regression"]).apply(null,arguments)};var _mono_wasm_exit=Module["_mono_wasm_exit"]=function(){return(_mono_wasm_exit=Module["_mono_wasm_exit"]=Module["asm"]["mono_wasm_exit"]).apply(null,arguments)};var _mono_wasm_set_main_args=Module["_mono_wasm_set_main_args"]=function(){return(_mono_wasm_set_main_args=Module["_mono_wasm_set_main_args"]=Module["asm"]["mono_wasm_set_main_args"]).apply(null,arguments)};var _mono_wasm_strdup=Module["_mono_wasm_strdup"]=function(){return(_mono_wasm_strdup=Module["_mono_wasm_strdup"]=Module["asm"]["mono_wasm_strdup"]).apply(null,arguments)};var _mono_wasm_parse_runtime_options=Module["_mono_wasm_parse_runtime_options"]=function(){return(_mono_wasm_parse_runtime_options=Module["_mono_wasm_parse_runtime_options"]=Module["asm"]["mono_wasm_parse_runtime_options"]).apply(null,arguments)};var _mono_wasm_enable_on_demand_gc=Module["_mono_wasm_enable_on_demand_gc"]=function(){return(_mono_wasm_enable_on_demand_gc=Module["_mono_wasm_enable_on_demand_gc"]=Module["asm"]["mono_wasm_enable_on_demand_gc"]).apply(null,arguments)};var _mono_wasm_intern_string=Module["_mono_wasm_intern_string"]=function(){return(_mono_wasm_intern_string=Module["_mono_wasm_intern_string"]=Module["asm"]["mono_wasm_intern_string"]).apply(null,arguments)};var _mono_wasm_string_get_data=Module["_mono_wasm_string_get_data"]=function(){return(_mono_wasm_string_get_data=Module["_mono_wasm_string_get_data"]=Module["asm"]["mono_wasm_string_get_data"]).apply(null,arguments)};var _mono_wasm_typed_array_new=Module["_mono_wasm_typed_array_new"]=function(){return(_mono_wasm_typed_array_new=Module["_mono_wasm_typed_array_new"]=Module["asm"]["mono_wasm_typed_array_new"]).apply(null,arguments)};var _mono_wasm_unbox_enum=Module["_mono_wasm_unbox_enum"]=function(){return(_mono_wasm_unbox_enum=Module["_mono_wasm_unbox_enum"]=Module["asm"]["mono_wasm_unbox_enum"]).apply(null,arguments)};var _memset=Module["_memset"]=function(){return(_memset=Module["_memset"]=Module["asm"]["memset"]).apply(null,arguments)};var ___errno_location=Module["___errno_location"]=function(){return(___errno_location=Module["___errno_location"]=Module["asm"]["__errno_location"]).apply(null,arguments)};var _putchar=Module["_putchar"]=function(){return(_putchar=Module["_putchar"]=Module["asm"]["putchar"]).apply(null,arguments)};var _mono_background_exec=Module["_mono_background_exec"]=function(){return(_mono_background_exec=Module["_mono_background_exec"]=Module["asm"]["mono_background_exec"]).apply(null,arguments)};var _mono_wasm_get_icudt_name=Module["_mono_wasm_get_icudt_name"]=function(){return(_mono_wasm_get_icudt_name=Module["_mono_wasm_get_icudt_name"]=Module["asm"]["mono_wasm_get_icudt_name"]).apply(null,arguments)};var _mono_wasm_load_icu_data=Module["_mono_wasm_load_icu_data"]=function(){return(_mono_wasm_load_icu_data=Module["_mono_wasm_load_icu_data"]=Module["asm"]["mono_wasm_load_icu_data"]).apply(null,arguments)};var _mono_print_method_from_ip=Module["_mono_print_method_from_ip"]=function(){return(_mono_print_method_from_ip=Module["_mono_print_method_from_ip"]=Module["asm"]["mono_print_method_from_ip"]).apply(null,arguments)};var _mono_set_timeout_exec=Module["_mono_set_timeout_exec"]=function(){return(_mono_set_timeout_exec=Module["_mono_set_timeout_exec"]=Module["asm"]["mono_set_timeout_exec"]).apply(null,arguments)};var _htons=Module["_htons"]=function(){return(_htons=Module["_htons"]=Module["asm"]["htons"]).apply(null,arguments)};var _mono_wasm_set_is_debugger_attached=Module["_mono_wasm_set_is_debugger_attached"]=function(){return(_mono_wasm_set_is_debugger_attached=Module["_mono_wasm_set_is_debugger_attached"]=Module["asm"]["mono_wasm_set_is_debugger_attached"]).apply(null,arguments)};var _mono_wasm_send_dbg_command_with_parms=Module["_mono_wasm_send_dbg_command_with_parms"]=function(){return(_mono_wasm_send_dbg_command_with_parms=Module["_mono_wasm_send_dbg_command_with_parms"]=Module["asm"]["mono_wasm_send_dbg_command_with_parms"]).apply(null,arguments)};var _mono_wasm_send_dbg_command=Module["_mono_wasm_send_dbg_command"]=function(){return(_mono_wasm_send_dbg_command=Module["_mono_wasm_send_dbg_command"]=Module["asm"]["mono_wasm_send_dbg_command"]).apply(null,arguments)};var _ntohs=Module["_ntohs"]=function(){return(_ntohs=Module["_ntohs"]=Module["asm"]["ntohs"]).apply(null,arguments)};var _emscripten_main_thread_process_queued_calls=Module["_emscripten_main_thread_process_queued_calls"]=function(){return(_emscripten_main_thread_process_queued_calls=Module["_emscripten_main_thread_process_queued_calls"]=Module["asm"]["emscripten_main_thread_process_queued_calls"]).apply(null,arguments)};var _htonl=Module["_htonl"]=function(){return(_htonl=Module["_htonl"]=Module["asm"]["htonl"]).apply(null,arguments)};var __get_tzname=Module["__get_tzname"]=function(){return(__get_tzname=Module["__get_tzname"]=Module["asm"]["_get_tzname"]).apply(null,arguments)};var __get_daylight=Module["__get_daylight"]=function(){return(__get_daylight=Module["__get_daylight"]=Module["asm"]["_get_daylight"]).apply(null,arguments)};var __get_timezone=Module["__get_timezone"]=function(){return(__get_timezone=Module["__get_timezone"]=Module["asm"]["_get_timezone"]).apply(null,arguments)};var stackSave=Module["stackSave"]=function(){return(stackSave=Module["stackSave"]=Module["asm"]["stackSave"]).apply(null,arguments)};var stackRestore=Module["stackRestore"]=function(){return(stackRestore=Module["stackRestore"]=Module["asm"]["stackRestore"]).apply(null,arguments)};var stackAlloc=Module["stackAlloc"]=function(){return(stackAlloc=Module["stackAlloc"]=Module["asm"]["stackAlloc"]).apply(null,arguments)};var _setThrew=Module["_setThrew"]=function(){return(_setThrew=Module["_setThrew"]=Module["asm"]["setThrew"]).apply(null,arguments)};var ___cxa_can_catch=Module["___cxa_can_catch"]=function(){return(___cxa_can_catch=Module["___cxa_can_catch"]=Module["asm"]["__cxa_can_catch"]).apply(null,arguments)};var ___cxa_is_pointer_type=Module["___cxa_is_pointer_type"]=function(){return(___cxa_is_pointer_type=Module["___cxa_is_pointer_type"]=Module["asm"]["__cxa_is_pointer_type"]).apply(null,arguments)};var _memalign=Module["_memalign"]=function(){return(_memalign=Module["_memalign"]=Module["asm"]["memalign"]).apply(null,arguments)};var dynCall_iijj=Module["dynCall_iijj"]=function(){return(dynCall_iijj=Module["dynCall_iijj"]=Module["asm"]["dynCall_iijj"]).apply(null,arguments)};var dynCall_iij=Module["dynCall_iij"]=function(){return(dynCall_iij=Module["dynCall_iij"]=Module["asm"]["dynCall_iij"]).apply(null,arguments)};var dynCall_ji=Module["dynCall_ji"]=function(){return(dynCall_ji=Module["dynCall_ji"]=Module["asm"]["dynCall_ji"]).apply(null,arguments)};var dynCall_j=Module["dynCall_j"]=function(){return(dynCall_j=Module["dynCall_j"]=Module["asm"]["dynCall_j"]).apply(null,arguments)};var dynCall_iijji=Module["dynCall_iijji"]=function(){return(dynCall_iijji=Module["dynCall_iijji"]=Module["asm"]["dynCall_iijji"]).apply(null,arguments)};var dynCall_jiji=Module["dynCall_jiji"]=function(){return(dynCall_jiji=Module["dynCall_jiji"]=Module["asm"]["dynCall_jiji"]).apply(null,arguments)};var dynCall_iiji=Module["dynCall_iiji"]=function(){return(dynCall_iiji=Module["dynCall_iiji"]=Module["asm"]["dynCall_iiji"]).apply(null,arguments)};var dynCall_iijiiij=Module["dynCall_iijiiij"]=function(){return(dynCall_iijiiij=Module["dynCall_iijiiij"]=Module["asm"]["dynCall_iijiiij"]).apply(null,arguments)};var dynCall_iiiij=Module["dynCall_iiiij"]=function(){return(dynCall_iiiij=Module["dynCall_iiiij"]=Module["asm"]["dynCall_iiiij"]).apply(null,arguments)};var dynCall_jiiij=Module["dynCall_jiiij"]=function(){return(dynCall_jiiij=Module["dynCall_jiiij"]=Module["asm"]["dynCall_jiiij"]).apply(null,arguments)};var dynCall_viiijjii=Module["dynCall_viiijjii"]=function(){return(dynCall_viiijjii=Module["dynCall_viiijjii"]=Module["asm"]["dynCall_viiijjii"]).apply(null,arguments)};var dynCall_jd=Module["dynCall_jd"]=function(){return(dynCall_jd=Module["dynCall_jd"]=Module["asm"]["dynCall_jd"]).apply(null,arguments)};var dynCall_jf=Module["dynCall_jf"]=function(){return(dynCall_jf=Module["dynCall_jf"]=Module["asm"]["dynCall_jf"]).apply(null,arguments)};var dynCall_jiiiiiiiii=Module["dynCall_jiiiiiiiii"]=function(){return(dynCall_jiiiiiiiii=Module["dynCall_jiiiiiiiii"]=Module["asm"]["dynCall_jiiiiiiiii"]).apply(null,arguments)};var dynCall_vj=Module["dynCall_vj"]=function(){return(dynCall_vj=Module["dynCall_vj"]=Module["asm"]["dynCall_vj"]).apply(null,arguments)};var dynCall_iji=Module["dynCall_iji"]=function(){return(dynCall_iji=Module["dynCall_iji"]=Module["asm"]["dynCall_iji"]).apply(null,arguments)};var dynCall_ij=Module["dynCall_ij"]=function(){return(dynCall_ij=Module["dynCall_ij"]=Module["asm"]["dynCall_ij"]).apply(null,arguments)};var dynCall_jj=Module["dynCall_jj"]=function(){return(dynCall_jj=Module["dynCall_jj"]=Module["asm"]["dynCall_jj"]).apply(null,arguments)};var dynCall_iiijiiiii=Module["dynCall_iiijiiiii"]=function(){return(dynCall_iiijiiiii=Module["dynCall_iiijiiiii"]=Module["asm"]["dynCall_iiijiiiii"]).apply(null,arguments)};var dynCall_vijj=Module["dynCall_vijj"]=function(){return(dynCall_vijj=Module["dynCall_vijj"]=Module["asm"]["dynCall_vijj"]).apply(null,arguments)};var dynCall_iiijiiii=Module["dynCall_iiijiiii"]=function(){return(dynCall_iiijiiii=Module["dynCall_iiijiiii"]=Module["asm"]["dynCall_iiijiiii"]).apply(null,arguments)};var dynCall_jiiiii=Module["dynCall_jiiiii"]=function(){return(dynCall_jiiiii=Module["dynCall_jiiiii"]=Module["asm"]["dynCall_jiiiii"]).apply(null,arguments)};var dynCall_jij=Module["dynCall_jij"]=function(){return(dynCall_jij=Module["dynCall_jij"]=Module["asm"]["dynCall_jij"]).apply(null,arguments)};var dynCall_jijj=Module["dynCall_jijj"]=function(){return(dynCall_jijj=Module["dynCall_jijj"]=Module["asm"]["dynCall_jijj"]).apply(null,arguments)};var dynCall_iijjiii=Module["dynCall_iijjiii"]=function(){return(dynCall_iijjiii=Module["dynCall_iijjiii"]=Module["asm"]["dynCall_iijjiii"]).apply(null,arguments)};var dynCall_vijjjii=Module["dynCall_vijjjii"]=function(){return(dynCall_vijjjii=Module["dynCall_vijjjii"]=Module["asm"]["dynCall_vijjjii"]).apply(null,arguments)};var dynCall_iijii=Module["dynCall_iijii"]=function(){return(dynCall_iijii=Module["dynCall_iijii"]=Module["asm"]["dynCall_iijii"]).apply(null,arguments)};var dynCall_iijiii=Module["dynCall_iijiii"]=function(){return(dynCall_iijiii=Module["dynCall_iijiii"]=Module["asm"]["dynCall_iijiii"]).apply(null,arguments)};var dynCall_vijiiii=Module["dynCall_vijiiii"]=function(){return(dynCall_vijiiii=Module["dynCall_vijiiii"]=Module["asm"]["dynCall_vijiiii"]).apply(null,arguments)};var dynCall_iijiiii=Module["dynCall_iijiiii"]=function(){return(dynCall_iijiiii=Module["dynCall_iijiiii"]=Module["asm"]["dynCall_iijiiii"]).apply(null,arguments)};var dynCall_vij=Module["dynCall_vij"]=function(){return(dynCall_vij=Module["dynCall_vij"]=Module["asm"]["dynCall_vij"]).apply(null,arguments)};var dynCall_jii=Module["dynCall_jii"]=function(){return(dynCall_jii=Module["dynCall_jii"]=Module["asm"]["dynCall_jii"]).apply(null,arguments)};function invoke_vi(index,a1){var sp=stackSave();try{wasmTable.get(index)(a1)}catch(e){stackRestore(sp);if(e!==e+0&&e!=="longjmp")throw e;_setThrew(1,0)}}Module["ccall"]=ccall;Module["cwrap"]=cwrap;Module["setValue"]=setValue;Module["getValue"]=getValue;Module["UTF8ArrayToString"]=UTF8ArrayToString;Module["UTF8ToString"]=UTF8ToString;Module["addRunDependency"]=addRunDependency;Module["removeRunDependency"]=removeRunDependency;Module["FS_createPath"]=FS.createPath;Module["FS_createDataFile"]=FS.createDataFile;Module["FS_createPreloadedFile"]=FS.createPreloadedFile;Module["FS_createLazyFile"]=FS.createLazyFile;Module["FS_createDevice"]=FS.createDevice;Module["FS_unlink"]=FS.unlink;Module["addFunction"]=addFunction;var calledRun;function ExitStatus(status){this.name="ExitStatus";this.message="Program terminated with exit("+status+")";this.status=status}dependenciesFulfilled=function runCaller(){if(!calledRun)run();if(!calledRun)dependenciesFulfilled=runCaller};function run(args){args=args||arguments_;if(runDependencies>0){return}preRun();if(runDependencies>0){return}function doRun(){if(calledRun)return;calledRun=true;Module["calledRun"]=true;if(ABORT)return;initRuntime();if(Module["onRuntimeInitialized"])Module["onRuntimeInitialized"]();postRun()}if(Module["setStatus"]){Module["setStatus"]("Running...");setTimeout(function(){setTimeout(function(){Module["setStatus"]("")},1);doRun()},1)}else{doRun()}}Module["run"]=run;function exit(status,implicit){EXITSTATUS=status;if(implicit&&keepRuntimeAlive()&&status===0){return}if(keepRuntimeAlive()){}else{exitRuntime();if(Module["onExit"])Module["onExit"](status);ABORT=true}quit_(status,new ExitStatus(status))}if(Module["preInit"]){if(typeof Module["preInit"]=="function")Module["preInit"]=[Module["preInit"]];while(Module["preInit"].length>0){Module["preInit"].pop()()}}run(); + +// SIG // Begin signature block +// SIG // MIIojgYJKoZIhvcNAQcCoIIofzCCKHsCAQExDzANBglg +// SIG // hkgBZQMEAgEFADB3BgorBgEEAYI3AgEEoGkwZzAyBgor +// SIG // BgEEAYI3AgEeMCQCAQEEEBDgyQbOONQRoqMAEEvTUJAC +// SIG // AQACAQACAQACAQACAQAwMTANBglghkgBZQMEAgEFAAQg +// SIG // ZJeJxKO1VGCjHxrshb3IZcwkUCKnrImdcVQvXM4kEEyg +// SIG // gg3wMIIGbjCCBFagAwIBAgITMwAAAo1+R8OCfgUaKgAA +// SIG // AAACjTANBgkqhkiG9w0BAQwFADB+MQswCQYDVQQGEwJV +// SIG // UzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMH +// SIG // UmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBv +// SIG // cmF0aW9uMSgwJgYDVQQDEx9NaWNyb3NvZnQgQ29kZSBT +// SIG // aWduaW5nIFBDQSAyMDExMB4XDTIxMTAxNDE4NDUxNFoX +// SIG // DTIyMTAxMzE4NDUxNFowYzELMAkGA1UEBhMCVVMxEzAR +// SIG // BgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1v +// SIG // bmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlv +// SIG // bjENMAsGA1UEAxMELk5FVDCCAaIwDQYJKoZIhvcNAQEB +// SIG // BQADggGPADCCAYoCggGBAM+nYwbxkHhF3CQTxhfbfq0y +// SIG // Y9iNmf+vpsXyHr+W14sNKW2VmN48wwUttFgkElZWXDR7 +// SIG // /LVrKRjN1wUWy/bzsFToydMsiIzNT1HUivMfeT/cykpT +// SIG // N/cVL/ZvvGrnhJeXQEn1xrnGNqW3ps0NjQQLPd2fvIy1 +// SIG // Y/YAIh9r2+dHkYj+VjmEtv9v7r2jbtklWw6OFgOwkB8f +// SIG // GA+15Qiny+1dE5WvItLj/DGrPmCWz4MVgfG42ntE481F +// SIG // Ly4U74rBEDtaNahOtPUSS8yTjUeNIgi3eTkznStetnjg +// SIG // r+Bn0Io4KhMqkwA7cav5wxlORTU/OTdM6PVJrw6NKC6I +// SIG // ztKqeOjlFs26h1c5eBY6ZKIbBwNkDQuSq/P52gOjsTzh +// SIG // /s+9JPwbXzr/plrAXIXZh178HTrsr5gP9iaPXWIMDvlM +// SIG // Fw54saZB68Hh+D1XiAKmOvct4etdk8v8wlJ96O3j8S2o +// SIG // omSdqcALeycc7hVnpJ8j6hFVW9hXFRqSb9VYn18cMu5u +// SIG // 3WvIkQIDAQABo4IBfjCCAXowHwYDVR0lBBgwFgYKKwYB +// SIG // BAGCN0wIAQYIKwYBBQUHAwMwHQYDVR0OBBYEFB4HrzFI +// SIG // RagJ4H8x6Jocx6igXl7OMFAGA1UdEQRJMEekRTBDMSkw +// SIG // JwYDVQQLEyBNaWNyb3NvZnQgT3BlcmF0aW9ucyBQdWVy +// SIG // dG8gUmljbzEWMBQGA1UEBRMNNDY0MjIzKzQ2ODYyNjAf +// SIG // BgNVHSMEGDAWgBRIbmTlUAXTgqoXNzcitW2oynUClTBU +// SIG // BgNVHR8ETTBLMEmgR6BFhkNodHRwOi8vd3d3Lm1pY3Jv +// SIG // c29mdC5jb20vcGtpb3BzL2NybC9NaWNDb2RTaWdQQ0Ey +// SIG // MDExXzIwMTEtMDctMDguY3JsMGEGCCsGAQUFBwEBBFUw +// SIG // UzBRBggrBgEFBQcwAoZFaHR0cDovL3d3dy5taWNyb3Nv +// SIG // ZnQuY29tL3BraW9wcy9jZXJ0cy9NaWNDb2RTaWdQQ0Ey +// SIG // MDExXzIwMTEtMDctMDguY3J0MAwGA1UdEwEB/wQCMAAw +// SIG // DQYJKoZIhvcNAQEMBQADggIBAB4qmkYG7kKK3A6/oZNe +// SIG // IP9JhNg7SX+VnacQGuwIHW2TxICObVUVh7Pq8m+xG9Ec +// SIG // o4Wl8AoArhOWnp3IMWFiF+vxGD7zaJpG77kxFXDewsA8 +// SIG // PnehwnMfHq6TliI5/65+FZB4Kf5Ey16s2Qk6nTSq/bsg +// SIG // T572aCkU9hPd5WXukhRfuQOnWn6lRWREhcqAReuFmik5 +// SIG // YD+hgJZgo3sCDc01hVEgOIdwgjXMENALrAgaQlp/QFRX +// SIG // +DMRpW96eyFoKFRWiRudBhtSqf9I+WmTgzK9QStgT8mn +// SIG // njaY70f8/dcqs0nv4wrWb438wT1xddyIrQXMnObYZCqb +// SIG // 7JDNTPfRpKpfAykwhRmAJDDvDn/zNmlz/vcaU4+WLtBV +// SIG // 2zpyk4oVcZzJgMWgGl3gdg8+fNAcLoQwfRqk+wYJccu+ +// SIG // IX8lR0h+CygomPKALmxSb2ShJsU3BXXd6E135PgCkPsv +// SIG // x3ntyeorbcAshUOIaqJamTOdWkNf5X97QoTDEuPsS2tI +// SIG // zI3munvtDZ14nykyYjf4eX8NR6pAwOEgMrWQ14taSKq6 +// SIG // MaXNucGaqCzFw/L+4p115iZbOo69+OuOhbVNB2tIZjeK +// SIG // YE7QKKU+lAdzgZUacya+Mg1Ku3ndGdvDB8IT735c3nU3 +// SIG // 8LV8Ytut5jxvaiA1om3DNumfVNAITHgnJF8p7x1DzIA5 +// SIG // Nax2MIIHejCCBWKgAwIBAgIKYQ6Q0gAAAAAAAzANBgkq +// SIG // hkiG9w0BAQsFADCBiDELMAkGA1UEBhMCVVMxEzARBgNV +// SIG // BAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +// SIG // HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEy +// SIG // MDAGA1UEAxMpTWljcm9zb2Z0IFJvb3QgQ2VydGlmaWNh +// SIG // dGUgQXV0aG9yaXR5IDIwMTEwHhcNMTEwNzA4MjA1OTA5 +// SIG // WhcNMjYwNzA4MjEwOTA5WjB+MQswCQYDVQQGEwJVUzET +// SIG // MBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVk +// SIG // bW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0 +// SIG // aW9uMSgwJgYDVQQDEx9NaWNyb3NvZnQgQ29kZSBTaWdu +// SIG // aW5nIFBDQSAyMDExMIICIjANBgkqhkiG9w0BAQEFAAOC +// SIG // Ag8AMIICCgKCAgEAq/D6chAcLq3YbqqCEE00uvK2WCGf +// SIG // Qhsqa+laUKq4BjgaBEm6f8MMHt03a8YS2AvwOMKZBrDI +// SIG // OdUBFDFC04kNeWSHfpRgJGyvnkmc6Whe0t+bU7IKLMOv +// SIG // 2akrrnoJr9eWWcpgGgXpZnboMlImEi/nqwhQz7NEt13Y +// SIG // xC4Ddato88tt8zpcoRb0RrrgOGSsbmQ1eKagYw8t00CT +// SIG // +OPeBw3VXHmlSSnnDb6gE3e+lD3v++MrWhAfTVYoonpy +// SIG // 4BI6t0le2O3tQ5GD2Xuye4Yb2T6xjF3oiU+EGvKhL1nk +// SIG // kDstrjNYxbc+/jLTswM9sbKvkjh+0p2ALPVOVpEhNSXD +// SIG // OW5kf1O6nA+tGSOEy/S6A4aN91/w0FK/jJSHvMAhdCVf +// SIG // GCi2zCcoOCWYOUo2z3yxkq4cI6epZuxhH2rhKEmdX4ji +// SIG // JV3TIUs+UsS1Vz8kA/DRelsv1SPjcF0PUUZ3s/gA4bys +// SIG // AoJf28AVs70b1FVL5zmhD+kjSbwYuER8ReTBw3J64HLn +// SIG // JN+/RpnF78IcV9uDjexNSTCnq47f7Fufr/zdsGbiwZeB +// SIG // e+3W7UvnSSmnEyimp31ngOaKYnhfsi+E11ecXL93KCjx +// SIG // 7W3DKI8sj0A3T8HhhUSJxAlMxdSlQy90lfdu+HggWCwT +// SIG // XWCVmj5PM4TasIgX3p5O9JawvEagbJjS4NaIjAsCAwEA +// SIG // AaOCAe0wggHpMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1Ud +// SIG // DgQWBBRIbmTlUAXTgqoXNzcitW2oynUClTAZBgkrBgEE +// SIG // AYI3FAIEDB4KAFMAdQBiAEMAQTALBgNVHQ8EBAMCAYYw +// SIG // DwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBRyLToC +// SIG // MZBDuRQFTuHqp8cx0SOJNDBaBgNVHR8EUzBRME+gTaBL +// SIG // hklodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpL2Ny +// SIG // bC9wcm9kdWN0cy9NaWNSb29DZXJBdXQyMDExXzIwMTFf +// SIG // MDNfMjIuY3JsMF4GCCsGAQUFBwEBBFIwUDBOBggrBgEF +// SIG // BQcwAoZCaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3Br +// SIG // aS9jZXJ0cy9NaWNSb29DZXJBdXQyMDExXzIwMTFfMDNf +// SIG // MjIuY3J0MIGfBgNVHSAEgZcwgZQwgZEGCSsGAQQBgjcu +// SIG // AzCBgzA/BggrBgEFBQcCARYzaHR0cDovL3d3dy5taWNy +// SIG // b3NvZnQuY29tL3BraW9wcy9kb2NzL3ByaW1hcnljcHMu +// SIG // aHRtMEAGCCsGAQUFBwICMDQeMiAdAEwAZQBnAGEAbABf +// SIG // AHAAbwBsAGkAYwB5AF8AcwB0AGEAdABlAG0AZQBuAHQA +// SIG // LiAdMA0GCSqGSIb3DQEBCwUAA4ICAQBn8oalmOBUeRou +// SIG // 09h0ZyKbC5YR4WOSmUKWfdJ5DJDBZV8uLD74w3LRbYP+ +// SIG // vj/oCso7v0epo/Np22O/IjWll11lhJB9i0ZQVdgMknzS +// SIG // Gksc8zxCi1LQsP1r4z4HLimb5j0bpdS1HXeUOeLpZMlE +// SIG // PXh6I/MTfaaQdION9MsmAkYqwooQu6SpBQyb7Wj6aC6V +// SIG // oCo/KmtYSWMfCWluWpiW5IP0wI/zRive/DvQvTXvbiWu +// SIG // 5a8n7dDd8w6vmSiXmE0OPQvyCInWH8MyGOLwxS3OW560 +// SIG // STkKxgrCxq2u5bLZ2xWIUUVYODJxJxp/sfQn+N4sOiBp +// SIG // mLJZiWhub6e3dMNABQamASooPoI/E01mC8CzTfXhj38c +// SIG // bxV9Rad25UAqZaPDXVJihsMdYzaXht/a8/jyFqGaJ+HN +// SIG // pZfQ7l1jQeNbB5yHPgZ3BtEGsXUfFL5hYbXw3MYbBL7f +// SIG // QccOKO7eZS/sl/ahXJbYANahRr1Z85elCUtIEJmAH9AA +// SIG // KcWxm6U/RXceNcbSoqKfenoi+kiVH6v7RyOA9Z74v2u3 +// SIG // S5fi63V4GuzqN5l5GEv/1rMjaHXmr/r8i+sLgOppO6/8 +// SIG // MO0ETI7f33VtY5E90Z1WTk+/gFcioXgRMiF670EKsT/7 +// SIG // qMykXcGhiJtXcVZOSEXAQsmbdlsKgEhr/Xmfwb1tbWrJ +// SIG // UnMTDXpQzTGCGfYwghnyAgEBMIGVMH4xCzAJBgNVBAYT +// SIG // AlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQH +// SIG // EwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29y +// SIG // cG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2Rl +// SIG // IFNpZ25pbmcgUENBIDIwMTECEzMAAAKNfkfDgn4FGioA +// SIG // AAAAAo0wDQYJYIZIAWUDBAIBBQCgga4wGQYJKoZIhvcN +// SIG // AQkDMQwGCisGAQQBgjcCAQQwHAYKKwYBBAGCNwIBCzEO +// SIG // MAwGCisGAQQBgjcCARUwLwYJKoZIhvcNAQkEMSIEIEhp +// SIG // rCziQU4IuN/UpdN1WZ8lu+b8VAfV7hu4H/l2/6YEMEIG +// SIG // CisGAQQBgjcCAQwxNDAyoBSAEgBNAGkAYwByAG8AcwBv +// SIG // AGYAdKEagBhodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20w +// SIG // DQYJKoZIhvcNAQEBBQAEggGAaOCjFpl1SPh7gqxkDj3r +// SIG // BTkqTrW/qLx/c3KI1VxDxf/r5z6xiPgxlLZ4Rexz+ln5 +// SIG // vbVf8n+62sbi0muePCSMuE5ihLOYmiTYLmyPHaA8zSEX +// SIG // Xr0ADyOUPV9JVezur8DqdmrwMAq1N/LUPcnggwhXCAzE +// SIG // BuQaZRYnNq63uODtaVPNfTXOAf8JY3bHVqj7j8twyyZK +// SIG // rzTuIM16MmcT8jqchfupCaam7nII0gZqx22h6y1JX75e +// SIG // vu7vgEbq+1+f9miG/AHvd4f1t1FpAv9ZopK2pRdVTum6 +// SIG // sS4qzfvCLWUDCDxx/K+lbwymBelganz57y7EIpquZoXm +// SIG // jnN5ZqvTnhkpBw4pEfw/cIP1zb1J+MGmXzk2SqEr2wFi +// SIG // S8DhG1eqdO3c+9G/rjtHrfh0H5m50G/Ihxd+g1p8a2y8 +// SIG // IBg/ItoII6tdiMcXZVCQLlwGAEVmpV1uLmkB2US+doz0 +// SIG // lhnr6SzpQpQp7XDf0XuAp7rOAW7ecJ3rQ5CWL1sIg5LL +// SIG // Kv4BrBP6oYIXADCCFvwGCisGAQQBgjcDAwExghbsMIIW +// SIG // 6AYJKoZIhvcNAQcCoIIW2TCCFtUCAQMxDzANBglghkgB +// SIG // ZQMEAgEFADCCAVEGCyqGSIb3DQEJEAEEoIIBQASCATww +// SIG // ggE4AgEBBgorBgEEAYRZCgMBMDEwDQYJYIZIAWUDBAIB +// SIG // BQAEIFJJ0NDJXfQkK1ZEtvO09LZGuwaEcyimOnaZ5MqP +// SIG // K9O9AgZiYZCL+nsYEzIwMjIwNDI1MTkxNzE4LjU0OVow +// SIG // BIACAfSggdCkgc0wgcoxCzAJBgNVBAYTAlVTMRMwEQYD +// SIG // VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25k +// SIG // MR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24x +// SIG // JTAjBgNVBAsTHE1pY3Jvc29mdCBBbWVyaWNhIE9wZXJh +// SIG // dGlvbnMxJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOkRE +// SIG // OEMtRTMzNy0yRkFFMSUwIwYDVQQDExxNaWNyb3NvZnQg +// SIG // VGltZS1TdGFtcCBTZXJ2aWNloIIRVzCCBwwwggT0oAMC +// SIG // AQICEzMAAAGcD6ZNYdKeSygAAQAAAZwwDQYJKoZIhvcN +// SIG // AQELBQAwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldh +// SIG // c2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV +// SIG // BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UE +// SIG // AxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAw +// SIG // HhcNMjExMjAyMTkwNTE5WhcNMjMwMjI4MTkwNTE5WjCB +// SIG // yjELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0 +// SIG // b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1p +// SIG // Y3Jvc29mdCBDb3Jwb3JhdGlvbjElMCMGA1UECxMcTWlj +// SIG // cm9zb2Z0IEFtZXJpY2EgT3BlcmF0aW9uczEmMCQGA1UE +// SIG // CxMdVGhhbGVzIFRTUyBFU046REQ4Qy1FMzM3LTJGQUUx +// SIG // JTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNl +// SIG // cnZpY2UwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIK +// SIG // AoICAQDbUioMGV1JFj+s612s02mKu23KPUNs71OjDeJG +// SIG // txkTF9rSWTiuA8XgYkAAi/5+2Ff7Ck7JcKQ9H/XD1OKw +// SIG // g1/bH3E1qO1z8XRy0PlpGhmyilgE7KsOvW8PIZCf243K +// SIG // dldgOrxrL8HKiQodOwStyT5lLWYpMsuT2fH8k8oihje4 +// SIG // TlpWiFPaCKLnFDaAB0Ccy6vIdtHjYB1Ie3iOZPisquL+ +// SIG // vNdCx7gOhB8iiTmTdsU8OSUpC8tBTeTIYPzmhaxQZd4m +// SIG // oNk6qeCJyi7fiW4fyXdHrZ3otmgxxa5pXz5pUUr+cEjV +// SIG // +cwIYBMkaY5kHM9c6dEGkgHn0ZDJvdt/54FOdSG61WwH +// SIG // h4+evUhwvXaB4LCMZIdCt5acOfNvtDjV3CHyFOp5AU/q +// SIG // gAwGftHU9brv4EUwcuteEAKH46NufE20l/WjlNUh7gAv +// SIG // t2zKMjO4zXRxCUTh/prBQwXJiUZeFSrEXiOfkuvSlBni +// SIG // yAYYZp5kOnaxfCKdGYjvr4QLA93vQJ6p2Ox3IHvOdCPa +// SIG // Cr8LsKVcFpyp8MEhhJTM+1LwqHJqFDF5O1Z9mjbYvm3R +// SIG // 9vPhkG+RDLKoTpr7mTgkaTljd9xvm94Obp8BD9Hk4mPi +// SIG // 51mtgLiuN8/6aZVESVZXtvSuNkD5DnIJQerIy5jaRKW/ +// SIG // W2rCe9ngNDJadS7R96GGRl7IIE37lwIDAQABo4IBNjCC +// SIG // ATIwHQYDVR0OBBYEFLtpCWdTXY5dtddkspy+oxjCA/qy +// SIG // MB8GA1UdIwQYMBaAFJ+nFV0AXmJdg/Tl0mWnG1M1Gely +// SIG // MF8GA1UdHwRYMFYwVKBSoFCGTmh0dHA6Ly93d3cubWlj +// SIG // cm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY3Jvc29mdCUy +// SIG // MFRpbWUtU3RhbXAlMjBQQ0ElMjAyMDEwKDEpLmNybDBs +// SIG // BggrBgEFBQcBAQRgMF4wXAYIKwYBBQUHMAKGUGh0dHA6 +// SIG // Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvY2VydHMv +// SIG // TWljcm9zb2Z0JTIwVGltZS1TdGFtcCUyMFBDQSUyMDIw +// SIG // MTAoMSkuY3J0MAwGA1UdEwEB/wQCMAAwEwYDVR0lBAww +// SIG // CgYIKwYBBQUHAwgwDQYJKoZIhvcNAQELBQADggIBAKcA +// SIG // KqYjGEczTWMs9z0m7Yo23sgqVF3LyK6gOMz7TCHAJN+F +// SIG // vbvZkQ53VkvrZUd1sE6a9ToGldcJnOmBc6iuhBlpvdN1 +// SIG // BLBRO8QSTD1433VTj4XCQd737wND1+eqKG3BdjrzbDks +// SIG // EwfG4v57PgrN/T7s7PkEjUGXfIgFQQkr8TQi+/HZZ9kR +// SIG // lNccgeACqlfb4uGPxn5sdhQPoxdMvmC3qG9DONJ5UsS9 +// SIG // KtO+bey+ohUTDa9LvEToc4Qzy5fuHj2H1JsmCaKG78nX +// SIG // pfWpwBLBxZYSpfml29onN8jcG7KD8nGSS/76PDlb2GMQ +// SIG // svv+Ra0JgL6FtGRGgYmHCpM6zVrf4V/a+SoHcC+tcdGY +// SIG // k2aKU5KOlv+fFE3n024V+z54tDAKR9z78rejdCBWqfvy +// SIG // 5cBUQ9c5+3unHD08BEp7qP2rgpoD856vNDgEwO77n7EW +// SIG // T76nl/IyrbK2kjbHLzUMphFpXKnV1fYWJI2+E/0LHvXF +// SIG // GGqF4OvMBRxbrJVn03T2Dy5db6s5TzJzSaQvCrXYqA4H +// SIG // KvstQWkqkpvBHTX8M09+/vyRbVXNxrPdeXw6oD2Q4Dks +// SIG // ykCFfn8N2j2LdixE9wG5iilv69dzsvHIN/g9A9+thkAQ +// SIG // CVb9DUSOTaMIGgsOqDYFjhT6ze9lkhHHGv/EEIkxj9l6 +// SIG // S4hqUQyWerFkaUWDXcnZMIIHcTCCBVmgAwIBAgITMwAA +// SIG // ABXF52ueAptJmQAAAAAAFTANBgkqhkiG9w0BAQsFADCB +// SIG // iDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0 +// SIG // b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1p +// SIG // Y3Jvc29mdCBDb3Jwb3JhdGlvbjEyMDAGA1UEAxMpTWlj +// SIG // cm9zb2Z0IFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5 +// SIG // IDIwMTAwHhcNMjEwOTMwMTgyMjI1WhcNMzAwOTMwMTgz +// SIG // MjI1WjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2Fz +// SIG // aGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UE +// SIG // ChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQD +// SIG // Ex1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDCC +// SIG // AiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAOTh +// SIG // pkzntHIhC3miy9ckeb0O1YLT/e6cBwfSqWxOdcjKNVf2 +// SIG // AX9sSuDivbk+F2Az/1xPx2b3lVNxWuJ+Slr+uDZnhUYj +// SIG // DLWNE893MsAQGOhgfWpSg0S3po5GawcU88V29YZQ3MFE +// SIG // yHFcUTE3oAo4bo3t1w/YJlN8OWECesSq/XJprx2rrPY2 +// SIG // vjUmZNqYO7oaezOtgFt+jBAcnVL+tuhiJdxqD89d9P6O +// SIG // U8/W7IVWTe/dvI2k45GPsjksUZzpcGkNyjYtcI4xyDUo +// SIG // veO0hyTD4MmPfrVUj9z6BVWYbWg7mka97aSueik3rMvr +// SIG // g0XnRm7KMtXAhjBcTyziYrLNueKNiOSWrAFKu75xqRdb +// SIG // Z2De+JKRHh09/SDPc31BmkZ1zcRfNN0Sidb9pSB9fvzZ +// SIG // nkXftnIv231fgLrbqn427DZM9ituqBJR6L8FA6PRc6ZN +// SIG // N3SUHDSCD/AQ8rdHGO2n6Jl8P0zbr17C89XYcz1DTsEz +// SIG // OUyOArxCaC4Q6oRRRuLRvWoYWmEBc8pnol7XKHYC4jMY +// SIG // ctenIPDC+hIK12NvDMk2ZItboKaDIV1fMHSRlJTYuVD5 +// SIG // C4lh8zYGNRiER9vcG9H9stQcxWv2XFJRXRLbJbqvUAV6 +// SIG // bMURHXLvjflSxIUXk8A8FdsaN8cIFRg/eKtFtvUeh17a +// SIG // j54WcmnGrnu3tz5q4i6tAgMBAAGjggHdMIIB2TASBgkr +// SIG // BgEEAYI3FQEEBQIDAQABMCMGCSsGAQQBgjcVAgQWBBQq +// SIG // p1L+ZMSavoKRPEY1Kc8Q/y8E7jAdBgNVHQ4EFgQUn6cV +// SIG // XQBeYl2D9OXSZacbUzUZ6XIwXAYDVR0gBFUwUzBRBgwr +// SIG // BgEEAYI3TIN9AQEwQTA/BggrBgEFBQcCARYzaHR0cDov +// SIG // L3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9Eb2NzL1Jl +// SIG // cG9zaXRvcnkuaHRtMBMGA1UdJQQMMAoGCCsGAQUFBwMI +// SIG // MBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +// SIG // DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQY +// SIG // MBaAFNX2VsuP6KJcYmjRPZSQW9fOmhjEMFYGA1UdHwRP +// SIG // ME0wS6BJoEeGRWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNv +// SIG // bS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dF8y +// SIG // MDEwLTA2LTIzLmNybDBaBggrBgEFBQcBAQROMEwwSgYI +// SIG // KwYBBQUHMAKGPmh0dHA6Ly93d3cubWljcm9zb2Z0LmNv +// SIG // bS9wa2kvY2VydHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYt +// SIG // MjMuY3J0MA0GCSqGSIb3DQEBCwUAA4ICAQCdVX38Kq3h +// SIG // LB9nATEkW+Geckv8qW/qXBS2Pk5HZHixBpOXPTEztTnX +// SIG // wnE2P9pkbHzQdTltuw8x5MKP+2zRoZQYIu7pZmc6U03d +// SIG // mLq2HnjYNi6cqYJWAAOwBb6J6Gngugnue99qb74py27Y +// SIG // P0h1AdkY3m2CDPVtI1TkeFN1JFe53Z/zjj3G82jfZfak +// SIG // Vqr3lbYoVSfQJL1AoL8ZthISEV09J+BAljis9/kpicO8 +// SIG // F7BUhUKz/AyeixmJ5/ALaoHCgRlCGVJ1ijbCHcNhcy4s +// SIG // a3tuPywJeBTpkbKpW99Jo3QMvOyRgNI95ko+ZjtPu4b6 +// SIG // MhrZlvSP9pEB9s7GdP32THJvEKt1MMU0sHrYUP4KWN1A +// SIG // PMdUbZ1jdEgssU5HLcEUBHG/ZPkkvnNtyo4JvbMBV0lU +// SIG // ZNlz138eW0QBjloZkWsNn6Qo3GcZKCS6OEuabvshVGtq +// SIG // RRFHqfG3rsjoiV5PndLQTHa1V1QJsWkBRH58oWFsc/4K +// SIG // u+xBZj1p/cvBQUl+fpO+y/g75LcVv7TOPqUxUYS8vwLB +// SIG // gqJ7Fx0ViY1w/ue10CgaiQuPNtq6TPmb/wrpNPgkNWcr +// SIG // 4A245oyZ1uEi6vAnQj0llOZ0dFtq0Z4+7X6gMTN9vMvp +// SIG // e784cETRkPHIqzqKOghif9lwY1NNje6CbaUFEMFxBmoQ +// SIG // tB1VM1izoXBm8qGCAs4wggI3AgEBMIH4oYHQpIHNMIHK +// SIG // MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv +// SIG // bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWlj +// SIG // cm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxNaWNy +// SIG // b3NvZnQgQW1lcmljYSBPcGVyYXRpb25zMSYwJAYDVQQL +// SIG // Ex1UaGFsZXMgVFNTIEVTTjpERDhDLUUzMzctMkZBRTEl +// SIG // MCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAgU2Vy +// SIG // dmljZaIjCgEBMAcGBSsOAwIaAxUAzdlp6t3ws/bnErbm +// SIG // 9c0M+9dvU0CggYMwgYCkfjB8MQswCQYDVQQGEwJVUzET +// SIG // MBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVk +// SIG // bW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0 +// SIG // aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFt +// SIG // cCBQQ0EgMjAxMDANBgkqhkiG9w0BAQUFAAIFAOYRVOAw +// SIG // IhgPMjAyMjA0MjYwMTEyMDBaGA8yMDIyMDQyNzAxMTIw +// SIG // MFowdzA9BgorBgEEAYRZCgQBMS8wLTAKAgUA5hFU4AIB +// SIG // ADAKAgEAAgITSAIB/zAHAgEAAgIRUjAKAgUA5hKmYAIB +// SIG // ADA2BgorBgEEAYRZCgQCMSgwJjAMBgorBgEEAYRZCgMC +// SIG // oAowCAIBAAIDB6EgoQowCAIBAAIDAYagMA0GCSqGSIb3 +// SIG // DQEBBQUAA4GBADgVbFCwnF2yj5NTpTayy+XeR+dPrPl5 +// SIG // 12DqhiA9y7cEHwVIHAfYQkgZ1UD0uV8AgxJ9oPA1/5Bw +// SIG // 89O7K7mOpj+bSuDHcruAWwJcUVNT4g1FcUjvRA2SikS9 +// SIG // QTdHL7HcCnA6rcXEsD9gqgqaB32jFKpCQLH5qwItoaJl +// SIG // aRYni0laMYIEDTCCBAkCAQEwgZMwfDELMAkGA1UEBhMC +// SIG // VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcT +// SIG // B1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jw +// SIG // b3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUt +// SIG // U3RhbXAgUENBIDIwMTACEzMAAAGcD6ZNYdKeSygAAQAA +// SIG // AZwwDQYJYIZIAWUDBAIBBQCgggFKMBoGCSqGSIb3DQEJ +// SIG // AzENBgsqhkiG9w0BCRABBDAvBgkqhkiG9w0BCQQxIgQg +// SIG // HX2cxgpG6dnRsP6iEOEiEMsPP1TvUWdgFxlXQc6gCxww +// SIG // gfoGCyqGSIb3DQEJEAIvMYHqMIHnMIHkMIG9BCA3D0WF +// SIG // II0syjoRd/XeEIG0WUIKzzuy6P6hORrb0nqmvDCBmDCB +// SIG // gKR+MHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNo +// SIG // aW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQK +// SIG // ExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMT +// SIG // HU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwAhMz +// SIG // AAABnA+mTWHSnksoAAEAAAGcMCIEINcVaStvj3CXQ5RB +// SIG // MGd0e4MVoi1rC25eETTzU195RDkkMA0GCSqGSIb3DQEB +// SIG // CwUABIICAEbbml544bbIKbZ50rjN8+Ys0aS9C+azZqJm +// SIG // KXohrikJVcV89O4U6h/zCAXh1pBGo9k+X549sWcJLBvv +// SIG // LINOvhQhy39Oj18rw/u4AUFJ8Pk1BuLVLW+zc55+Ru2q +// SIG // ETbMpiHevc9e58DHSySpr/rS8ylwcBJVtO+AzuQsVJZn +// SIG // yGjfVjWQd858IVAEkJWZLZwDrxJRsdKPY1u6fWmPOp7O +// SIG // k/LSoKpN3q6H7fobXIFCpxXWFGePlZ6LF4Y+UExFu/2U +// SIG // A1ivEaHNgqrIh6USzkblgeGT6gtc9V/MTybgM3GfbDVM +// SIG // eE1zSeu41B7bWVbBQ7Rou6OkszVxBBySpLXWhXdc+wuC +// SIG // E+LV1//UfS2QD5cz0gQvc89M/UW7BOrZrA0IFOWimWnc +// SIG // q4Ci64lfV2Eoa37kCT5cjIfKqQpJZGjwyE/yJHcyqaLw +// SIG // 4u/PMgpkjVlgGyUhOGw1e9R/DMi01p6h2C8PbMsvy2fi +// SIG // t+PttlTg5A7oU2DVuQ+M67Dx1q+AuoHfu/wwpnjlfsc4 +// SIG // AZFVd7KknRcDDshY+oJ1orZHVxxwjG9mIwnDlSASz1u3 +// SIG // 6xXzUzVNoFzmTE6bDBOFpjDOA+IezkDST08BsJ2Af50d +// SIG // /Y1CMxoRvlSNneVXB28jlW3VDqS/bS3/4ovUCTpaYk9T +// SIG // 01X/SqSkiqrT+yMncZTdvq8ET8KFdU5q +// SIG // End signature block diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.6.0.5.itaht6zf1c.js.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.6.0.5.itaht6zf1c.js.gz new file mode 100644 index 00000000..88d516ae Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.6.0.5.itaht6zf1c.js.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.timezones.blat b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.timezones.blat new file mode 100755 index 00000000..aaf85d82 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.timezones.blat differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.timezones.blat.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.timezones.blat.gz new file mode 100644 index 00000000..47001eee Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.timezones.blat.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.wasm b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.wasm new file mode 100755 index 00000000..07a560f1 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.wasm differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.wasm.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.wasm.gz new file mode 100644 index 00000000..43999437 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.wasm.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt.dat b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt.dat new file mode 100755 index 00000000..7281a276 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt.dat differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt.dat.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt.dat.gz new file mode 100644 index 00000000..7e8934be Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt.dat.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_CJK.dat b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_CJK.dat new file mode 100755 index 00000000..a4ef6d70 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_CJK.dat differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_CJK.dat.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_CJK.dat.gz new file mode 100644 index 00000000..24301e7b Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_CJK.dat.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_EFIGS.dat b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_EFIGS.dat new file mode 100755 index 00000000..4b39b3fa Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_EFIGS.dat differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_EFIGS.dat.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_EFIGS.dat.gz new file mode 100644 index 00000000..2d26d530 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_EFIGS.dat.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_no_CJK.dat b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_no_CJK.dat new file mode 100755 index 00000000..bab52e7a Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_no_CJK.dat differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_no_CJK.dat.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_no_CJK.dat.gz new file mode 100644 index 00000000..0da58390 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_no_CJK.dat.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/mscorlib.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/mscorlib.dll new file mode 100755 index 00000000..162158d1 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/mscorlib.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/mscorlib.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/mscorlib.dll.gz new file mode 100644 index 00000000..7cf03050 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/mscorlib.dll.gz differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/netstandard.dll b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/netstandard.dll new file mode 100755 index 00000000..873ef9a2 Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/netstandard.dll differ diff --git a/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/netstandard.dll.gz b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/netstandard.dll.gz new file mode 100644 index 00000000..972b264b Binary files /dev/null and b/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/netstandard.dll.gz differ diff --git a/CS_Todo/obj/CS_Todo.csproj.nuget.dgspec.json b/CS_Todo/obj/CS_Todo.csproj.nuget.dgspec.json new file mode 100644 index 00000000..d0c6240a --- /dev/null +++ b/CS_Todo/obj/CS_Todo.csproj.nuget.dgspec.json @@ -0,0 +1,82 @@ +{ + "format": 1, + "restore": { + "/Users/normrasmussen/Documents/Northpass/CS_Todo/CS_Todo.csproj": {} + }, + "projects": { + "/Users/normrasmussen/Documents/Northpass/CS_Todo/CS_Todo.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/normrasmussen/Documents/Northpass/CS_Todo/CS_Todo.csproj", + "projectName": "CS_Todo", + "projectPath": "/Users/normrasmussen/Documents/Northpass/CS_Todo/CS_Todo.csproj", + "packagesPath": "/Users/normrasmussen/.nuget/packages/", + "outputPath": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/normrasmussen/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Microsoft.AspNetCore.Components.WebAssembly": { + "target": "Package", + "version": "[6.0.5, )" + }, + "Microsoft.AspNetCore.Components.WebAssembly.DevServer": { + "suppressParent": "All", + "target": "Package", + "version": "[6.0.5, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.NETCore.App.Runtime.Mono.browser-wasm", + "version": "[6.0.5, 6.0.5]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/6.0.300/RuntimeIdentifierGraph.json" + } + }, + "runtimes": { + "browser-wasm": { + "#import": [] + } + } + } + } +} \ No newline at end of file diff --git a/CS_Todo/obj/CS_Todo.csproj.nuget.g.props b/CS_Todo/obj/CS_Todo.csproj.nuget.g.props new file mode 100644 index 00000000..6b20291d --- /dev/null +++ b/CS_Todo/obj/CS_Todo.csproj.nuget.g.props @@ -0,0 +1,21 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /Users/normrasmussen/.nuget/packages/ + /Users/normrasmussen/.nuget/packages/ + PackageReference + 6.2.0 + + + + + + + + + /Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components.webassembly.devserver/6.0.5 + + \ No newline at end of file diff --git a/CS_Todo/obj/CS_Todo.csproj.nuget.g.targets b/CS_Todo/obj/CS_Todo.csproj.nuget.g.targets new file mode 100644 index 00000000..fae7451c --- /dev/null +++ b/CS_Todo/obj/CS_Todo.csproj.nuget.g.targets @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/CS_Todo/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/CS_Todo/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 00000000..f795be5c --- /dev/null +++ b/CS_Todo/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/CS_Todo/obj/Debug/net6.0/CS_Todo.AssemblyInfo.cs b/CS_Todo/obj/Debug/net6.0/CS_Todo.AssemblyInfo.cs new file mode 100644 index 00000000..e6180827 --- /dev/null +++ b/CS_Todo/obj/Debug/net6.0/CS_Todo.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("CS_Todo")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("CS_Todo")] +[assembly: System.Reflection.AssemblyTitleAttribute("CS_Todo")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/CS_Todo/obj/Debug/net6.0/CS_Todo.AssemblyInfoInputs.cache b/CS_Todo/obj/Debug/net6.0/CS_Todo.AssemblyInfoInputs.cache new file mode 100644 index 00000000..3230f8cc --- /dev/null +++ b/CS_Todo/obj/Debug/net6.0/CS_Todo.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +b7517134760e853d918a838efaf1ecfe04b79415 diff --git a/CS_Todo/obj/Debug/net6.0/CS_Todo.GeneratedMSBuildEditorConfig.editorconfig b/CS_Todo/obj/Debug/net6.0/CS_Todo.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 00000000..08e5b31a --- /dev/null +++ b/CS_Todo/obj/Debug/net6.0/CS_Todo.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,55 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = false +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = browser +build_property.EnableSingleFileAnalyzer = +build_property.EnableTrimAnalyzer = true +build_property.IncludeAllContentForSelfExtract = +build_property.RootNamespace = CS_Todo +build_property.RootNamespace = CS_Todo +build_property.ProjectDir = /Users/normrasmussen/Documents/Northpass/CS_Todo/ +build_property.RazorLangVersion = 6.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = /Users/normrasmussen/Documents/Northpass/CS_Todo +build_property._RazorSourceGeneratorDebug = + +[/Users/normrasmussen/Documents/Northpass/CS_Todo/App.razor] +build_metadata.AdditionalFiles.TargetPath = QXBwLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/Users/normrasmussen/Documents/Northpass/CS_Todo/Pages/Counter.razor] +build_metadata.AdditionalFiles.TargetPath = UGFnZXMvQ291bnRlci5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/Users/normrasmussen/Documents/Northpass/CS_Todo/Pages/FetchData.razor] +build_metadata.AdditionalFiles.TargetPath = UGFnZXMvRmV0Y2hEYXRhLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/Users/normrasmussen/Documents/Northpass/CS_Todo/Pages/Index.razor] +build_metadata.AdditionalFiles.TargetPath = UGFnZXMvSW5kZXgucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/Users/normrasmussen/Documents/Northpass/CS_Todo/Pages/TodoList.razor] +build_metadata.AdditionalFiles.TargetPath = UGFnZXMvVG9kb0xpc3QucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/Users/normrasmussen/Documents/Northpass/CS_Todo/Shared/SurveyPrompt.razor] +build_metadata.AdditionalFiles.TargetPath = U2hhcmVkL1N1cnZleVByb21wdC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/Users/normrasmussen/Documents/Northpass/CS_Todo/_Imports.razor] +build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/Users/normrasmussen/Documents/Northpass/CS_Todo/Shared/MainLayout.razor] +build_metadata.AdditionalFiles.TargetPath = U2hhcmVkL01haW5MYXlvdXQucmF6b3I= +build_metadata.AdditionalFiles.CssScope = b-j28dahcn9v + +[/Users/normrasmussen/Documents/Northpass/CS_Todo/Shared/NavMenu.razor] +build_metadata.AdditionalFiles.TargetPath = U2hhcmVkL05hdk1lbnUucmF6b3I= +build_metadata.AdditionalFiles.CssScope = b-horb3d2a39 diff --git a/CS_Todo/obj/Debug/net6.0/CS_Todo.GlobalUsings.g.cs b/CS_Todo/obj/Debug/net6.0/CS_Todo.GlobalUsings.g.cs new file mode 100644 index 00000000..0103b592 --- /dev/null +++ b/CS_Todo/obj/Debug/net6.0/CS_Todo.GlobalUsings.g.cs @@ -0,0 +1,11 @@ +// +global using global::Microsoft.Extensions.Configuration; +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Extensions.Logging; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/CS_Todo/obj/Debug/net6.0/CS_Todo.MvcApplicationPartsAssemblyInfo.cache b/CS_Todo/obj/Debug/net6.0/CS_Todo.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 00000000..e69de29b diff --git a/CS_Todo/obj/Debug/net6.0/CS_Todo.assets.cache b/CS_Todo/obj/Debug/net6.0/CS_Todo.assets.cache new file mode 100644 index 00000000..08592742 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/CS_Todo.assets.cache differ diff --git a/CS_Todo/obj/Debug/net6.0/CS_Todo.csproj.AssemblyReference.cache b/CS_Todo/obj/Debug/net6.0/CS_Todo.csproj.AssemblyReference.cache new file mode 100644 index 00000000..4f01eece Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/CS_Todo.csproj.AssemblyReference.cache differ diff --git a/CS_Todo/obj/Debug/net6.0/CS_Todo.csproj.CopyComplete b/CS_Todo/obj/Debug/net6.0/CS_Todo.csproj.CopyComplete new file mode 100644 index 00000000..e69de29b diff --git a/CS_Todo/obj/Debug/net6.0/CS_Todo.csproj.CoreCompileInputs.cache b/CS_Todo/obj/Debug/net6.0/CS_Todo.csproj.CoreCompileInputs.cache new file mode 100644 index 00000000..d8e8d894 --- /dev/null +++ b/CS_Todo/obj/Debug/net6.0/CS_Todo.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +420b4b0fa73e848dcf8ef36bee6ed51f6b4df5a7 diff --git a/CS_Todo/obj/Debug/net6.0/CS_Todo.csproj.FileListAbsolute.txt b/CS_Todo/obj/Debug/net6.0/CS_Todo.csproj.FileListAbsolute.txt new file mode 100644 index 00000000..99d2a779 --- /dev/null +++ b/CS_Todo/obj/Debug/net6.0/CS_Todo.csproj.FileListAbsolute.txt @@ -0,0 +1,815 @@ +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/blazor.boot.json +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/blazor.webassembly.js +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/CS_Todo.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/CS_Todo.pdb +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.6.0.5.itaht6zf1c.js +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.timezones.blat +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.wasm +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_CJK.dat +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_EFIGS.dat +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_no_CJK.dat +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt.dat +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.CSharp.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Options.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Registry.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/mscorlib.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/netstandard.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.AppContext.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Buffers.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Concurrent.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Immutable.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.NonGeneric.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Specialized.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Annotations.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Primitives.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Configuration.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Console.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Core.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.Common.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.DataSetExtensions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Contracts.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Debug.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Process.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tools.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tracing.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.Primitives.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Dynamic.Runtime.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Formats.Asn1.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Calendars.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Extensions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.Brotli.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.IsolatedStorage.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipelines.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Expressions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Parallel.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Queryable.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Memory.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.Json.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.HttpListener.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Mail.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.NameResolution.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.NetworkInformation.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Ping.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Primitives.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Quic.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Requests.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Security.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.ServicePoint.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Sockets.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebClient.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebProxy.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.Client.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.Vectors.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ObjectModel.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.CoreLib.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.DataContractSerialization.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Runtime.InteropServices.JavaScript.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Uri.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.Linq.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Extensions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Metadata.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Primitives.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Reader.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.ResourceManager.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Writer.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Extensions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Handles.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Intrinsics.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Loader.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Numerics.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.AccessControl.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Claims.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.Windows.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.SecureString.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ServiceModel.Web.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ServiceProcess.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encodings.Web.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Json.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.RegularExpressions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Channels.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Overlapped.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Thread.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.ThreadPool.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Timer.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.Local.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ValueTuple.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Web.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Web.HttpUtility.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Windows.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Linq.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.ReaderWriter.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Serialization.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XDocument.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlDocument.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlSerializer.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/WindowsBase.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.Local.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Core.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Reader.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.CoreLib.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.DataSetExtensions.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Quic.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ServiceModel.Web.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.timezones.blat.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlSerializer.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Channels.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Contracts.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.Linq.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encodings.Web.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Primitives.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Mail.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/mscorlib.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Json.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Metadata.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.AccessControl.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.HttpListener.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Immutable.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.SecureString.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Ping.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Extensions.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.NetworkInformation.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.CSharp.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Configuration.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/netstandard.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebProxy.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.Windows.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Memory.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_no_CJK.dat.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Process.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Numerics.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Claims.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.NonGeneric.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Security.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.Brotli.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Dynamic.Runtime.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlDocument.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ServiceProcess.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.wasm.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Expressions.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Uri.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Debug.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Timer.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.Vectors.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.Client.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/CS_Todo.pdb.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.AppContext.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tools.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Parallel.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Windows.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Linq.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Thread.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Writer.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.RegularExpressions.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Primitives.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Serialization.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Specialized.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Loader.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XDocument.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Sockets.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Web.HttpUtility.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.ServicePoint.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Calendars.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt.dat.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.ResourceManager.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Handles.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.Common.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Overlapped.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Primitives.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/blazor.webassembly.js.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.IsolatedStorage.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.6.0.5.itaht6zf1c.js.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Console.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.NameResolution.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipelines.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_CJK.dat.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Options.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tracing.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebClient.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Buffers.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.DataContractSerialization.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/CS_Todo.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Annotations.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_EFIGS.dat.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Extensions.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.Json.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.ThreadPool.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Queryable.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/WindowsBase.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Extensions.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Registry.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ValueTuple.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Requests.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Concurrent.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Formats.Asn1.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.ReaderWriter.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Web.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.Primitives.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Intrinsics.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ObjectModel.dll.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/CS_Todo.staticwebassets.runtime.json +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/CS_Todo.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/CS_Todo.pdb +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Authorization.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Components.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Forms.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Web.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Components.WebAssembly.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Metadata.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Binder.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.FileExtensions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Json.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.FileProviders.Physical.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Options.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/Microsoft.JSInterop.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/Microsoft.JSInterop.WebAssembly.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.IO.Pipelines.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/Microsoft.CSharp.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/Microsoft.VisualBasic.Core.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/Microsoft.VisualBasic.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/Microsoft.Win32.Primitives.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/Microsoft.Win32.Registry.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.AppContext.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Buffers.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Collections.Concurrent.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Collections.Immutable.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Collections.NonGeneric.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Collections.Specialized.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Collections.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.ComponentModel.Annotations.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.ComponentModel.DataAnnotations.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.ComponentModel.EventBasedAsync.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.ComponentModel.Primitives.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.ComponentModel.TypeConverter.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.ComponentModel.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Configuration.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Console.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Core.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Data.Common.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Data.DataSetExtensions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Data.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Diagnostics.Contracts.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Diagnostics.Debug.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Diagnostics.DiagnosticSource.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Diagnostics.FileVersionInfo.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Diagnostics.Process.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Diagnostics.StackTrace.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Diagnostics.TextWriterTraceListener.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Diagnostics.Tools.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Diagnostics.TraceSource.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Diagnostics.Tracing.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Drawing.Primitives.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Drawing.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Dynamic.Runtime.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Formats.Asn1.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Globalization.Calendars.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Globalization.Extensions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Globalization.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.IO.Compression.Brotli.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.IO.Compression.FileSystem.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.IO.Compression.ZipFile.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.IO.Compression.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.AccessControl.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.DriveInfo.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.Primitives.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.Watcher.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.IO.IsolatedStorage.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.IO.MemoryMappedFiles.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.IO.Pipes.AccessControl.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.IO.Pipes.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.IO.UnmanagedMemoryStream.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.IO.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Linq.Expressions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Linq.Parallel.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Linq.Queryable.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Linq.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Memory.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Net.Http.Json.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Net.Http.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Net.HttpListener.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Net.Mail.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Net.NameResolution.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Net.NetworkInformation.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Net.Ping.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Net.Primitives.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Net.Quic.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Net.Requests.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Net.Security.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Net.ServicePoint.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Net.Sockets.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Net.WebClient.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Net.WebHeaderCollection.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Net.WebProxy.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Net.WebSockets.Client.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Net.WebSockets.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Net.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Numerics.Vectors.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Numerics.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.ObjectModel.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Private.DataContractSerialization.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Private.Runtime.InteropServices.JavaScript.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Private.Uri.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Private.Xml.Linq.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Private.Xml.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Reflection.DispatchProxy.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Reflection.Emit.ILGeneration.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Reflection.Emit.Lightweight.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Reflection.Emit.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Reflection.Extensions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Reflection.Metadata.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Reflection.Primitives.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Reflection.TypeExtensions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Reflection.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Resources.Reader.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Resources.ResourceManager.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Resources.Writer.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Runtime.CompilerServices.Unsafe.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Runtime.CompilerServices.VisualC.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Runtime.Extensions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Runtime.Handles.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Runtime.InteropServices.RuntimeInformation.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Runtime.InteropServices.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Runtime.Intrinsics.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Runtime.Loader.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Runtime.Numerics.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Runtime.Serialization.Formatters.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Runtime.Serialization.Json.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Runtime.Serialization.Primitives.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Runtime.Serialization.Xml.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Runtime.Serialization.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Runtime.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Security.AccessControl.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Security.Claims.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Security.Cryptography.Algorithms.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Security.Cryptography.Cng.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Security.Cryptography.Csp.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Security.Cryptography.Encoding.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Security.Cryptography.OpenSsl.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Security.Cryptography.Primitives.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Security.Cryptography.X509Certificates.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Security.Principal.Windows.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Security.Principal.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Security.SecureString.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Security.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.ServiceModel.Web.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.ServiceProcess.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Text.Encoding.CodePages.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Text.Encoding.Extensions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Text.Encoding.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Text.Encodings.Web.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Text.Json.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Text.RegularExpressions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Threading.Channels.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Threading.Overlapped.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Threading.Tasks.Dataflow.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Threading.Tasks.Extensions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Threading.Tasks.Parallel.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Threading.Tasks.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Threading.Thread.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Threading.ThreadPool.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Threading.Timer.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Threading.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Transactions.Local.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Transactions.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.ValueTuple.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Web.HttpUtility.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Web.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Windows.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Xml.Linq.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Xml.ReaderWriter.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Xml.Serialization.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Xml.XDocument.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Xml.XPath.XDocument.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Xml.XPath.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Xml.XmlDocument.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Xml.XmlSerializer.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Xml.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/WindowsBase.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/mscorlib.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/netstandard.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/System.Private.CoreLib.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/dotnet.js +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/dotnet.timezones.blat +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/dotnet.wasm +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/icudt.dat +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/icudt_CJK.dat +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/icudt_EFIGS.dat +/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/icudt_no_CJK.dat +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/CS_Todo.csproj.AssemblyReference.cache +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/CS_Todo.GeneratedMSBuildEditorConfig.editorconfig +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/CS_Todo.AssemblyInfoInputs.cache +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/CS_Todo.AssemblyInfo.cs +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/CS_Todo.csproj.CoreCompileInputs.cache +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/CS_Todo.MvcApplicationPartsAssemblyInfo.cache +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/vaxoCzlT.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/3madUA77.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/N7TJtAYf.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/0aw+2Bxa.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/8bVRGP9b.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/hCWocqmQ.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/xmiwABxn.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/j++BdFv1.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/4xtw6LPe.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/1vm4IFaG.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/mKCm41GD.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/YOMdCEDS.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/f620GeOq.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/wrRolEjk.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/kjMKg2YM.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/l6xNnSyK.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/OYiTuEMW.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/BqYnQ2NX.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/U1GjwWQV.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/6za3LhEM.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/bHQQUCCg.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/YpqlEPw9.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/tKvYdTQx.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/cAPx3JXU.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/iO4E0LGE.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/w6ge0Ss3.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/HpXdBeJg.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/y8lYbkJi.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/jHF9V+Ta.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/vFpanVH5.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/YQkYcbEI.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/aoHC2mWj.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/Dr+tX3qM.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/nOlRkj37.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/Oiyb3P6J.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/w+a9Z7nc.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/79+eByEP.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/4FefMRN8.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/SLQpa4WU.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/Ygb5TvsW.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/n88QEGkw.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/cbo3yjvW.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/TjQsKJ7P.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/+GAW7ng4.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/s81a9R4o.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/+XGOsjM8.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/of87xl4N.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/2VNuPiDX.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/h0IwZ7iM.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/d+cUeHq3.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/uCZHf1y+.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/d65FhNAD.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/lVbFtWoN.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/QW72x0Cq.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/jryhAakP.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/WMNt4GKI.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/UZpmVZp+.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/Z3OzKbMB.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/1UaZt5mD.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/EmSAUKYY.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/yQuw3LXW.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/pzoY8bT8.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/WA0wuQkK.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/+5zAAppF.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/E98H+nSj.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/KfePmeIu.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/E+kJPdi4.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/aOY0XOpn.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/sEa7XXf0.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/UziCi+WY.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/UYaQnQMN.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/yVKdSxvd.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/anvFXlrU.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/tGEW6puy.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/QXH+vF2t.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/vFrglExZ.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/jBCgESp2.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/MQ+2lKz6.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/6K7a1sxg.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/GsqSnXSV.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/JYfvtIIP.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/XeYKC2py.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/b2BTVfAd.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/cPwvfED+.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/wGx4Jo6k.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/TV9E4gLb.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/aBQz+dWu.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/5gwUmMDS.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/tjua794V.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/BwBrIccx.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/b3G7OKjk.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/5bwqC54S.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/0k5pxcbT.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/YhOfo1DZ.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/dwbJ+N1C.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/pnCUkTx+.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/OY7PoISD.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/v0FnAjj8.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/zJ20I4Av.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/cjbatWbD.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/j5IDt85f.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/qYP+lIjq.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/h+UT+DO+.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/HOjRYT5U.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/+2ZLXnU1.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/ZyKi4OGE.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/vk+ovbKo.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/+FnVEix6.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/GtnGYZZM.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/3kevzYbE.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/xyLuRHNu.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/FONcAOvJ.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/LKuTbO7a.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/UTD5E2ng.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/Y4M8Plae.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/b403oJt4.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/96shZgcq.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/nHabIDkI.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/YMW+BE0p.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/MsN5Be+5.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/+S+vpmjb.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/quOPeWPN.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/mmYoYixw.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/ESlVORya.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/lgksuMXI.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/y6glL3Qd.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/RWEsCFuw.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/ueQWGjdD.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/Np1LMJwu.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/ZNKwyHY+.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/NVAzqX0Y.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/DcYPHA+m.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/Z5DZehAu.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/+w7YWWkg.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/KryUQiny.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/KUwlVoQo.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/9pTSquT+.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/+DhISid1.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/9V1RKqW+.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/DExO9jJ+.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/WQfckDy2.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/JA8D0SGk.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/LMPANNez.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/BP4YSYLo.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/noNMMJ3G.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/pBYW4Ue+.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/ZlkXkYAk.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/cOMzoOae.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/PkhMudns.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/axkDzPDg.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/n00ukSNx.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/0LDK0b+c.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/EPqZK9Yz.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/RLnl5TVX.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/3h7VFZey.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/Pa0u1erH.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/4KpKYfXr.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/8e4i2wwq.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/mtIVAx49.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/2Hj+3exQ.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/Sg3XLFkl.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/intOU6Ee.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/VfK8l1Sx.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/vjE2loZs.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/2n+36BA3.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/MKJYd23m.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/WUBNxRri.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/HEl9f72Y.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/V9nJZSNV.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/+eybwpsE.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/63kcE8QL.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/YDvclHMg.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/pCOvjnOr.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/Z1BthFgm.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/KgAVvdsC.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/kycIWHwy.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/Yqw4dse1.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/nOj3qEby.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/ob2sk5HN.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/RADkxc0W.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/QnfvO+Vg.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/EOhiOkXz.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/26gNfKbP.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/+hbvt+zz.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/+8ir2EqM.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/xRo0Gl9i.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/7JTnascI.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/ceifEB1w.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/+UJu3XHl.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/TiU9jybf.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/17gn4A+j.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/FYbG1Hpm.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/qkJbfahn.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/U0Cx4Ted.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/w431ewEn.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/cz8LMxh1.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/vnbfyRHw.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/j65auveW.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/SOfTcj6e.gz +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/blazor.boot.json +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/staticwebassets.build.json +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/staticwebassets.development.json +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/scopedcss/Shared/MainLayout.razor.rz.scp.css +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/scopedcss/Shared/NavMenu.razor.rz.scp.css +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/scopedcss/bundle/CS_Todo.styles.css +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/scopedcss/projectbundle/CS_Todo.bundle.scp.css +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/CS_Todo.csproj.CopyComplete +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/CS_Todo.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/refint/CS_Todo.dll +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/CS_Todo.pdb +/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/ref/CS_Todo.dll diff --git a/CS_Todo/obj/Debug/net6.0/CS_Todo.dll b/CS_Todo/obj/Debug/net6.0/CS_Todo.dll new file mode 100644 index 00000000..f7265ec6 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/CS_Todo.dll differ diff --git a/CS_Todo/obj/Debug/net6.0/CS_Todo.pdb b/CS_Todo/obj/Debug/net6.0/CS_Todo.pdb new file mode 100644 index 00000000..42bb32c1 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/CS_Todo.pdb differ diff --git a/CS_Todo/obj/Debug/net6.0/blazor.boot.json b/CS_Todo/obj/Debug/net6.0/blazor.boot.json new file mode 100644 index 00000000..8adcec16 --- /dev/null +++ b/CS_Todo/obj/Debug/net6.0/blazor.boot.json @@ -0,0 +1,218 @@ +{ + "cacheBootResources": true, + "config": [ ], + "debugBuild": true, + "entryAssembly": "CS_Todo", + "icuDataMode": 0, + "linkerEnabled": false, + "resources": { + "assembly": { + "Microsoft.AspNetCore.Authorization.dll": "sha256-ThsHz1KsYfsXW9VgMdflnhR6Na8ZrPnzhWrKZkjl6XE=", + "Microsoft.AspNetCore.Components.dll": "sha256-ramVDoksT5qhSqsyvuf70+Xk6LzKiCAjtzl9xVwIdV4=", + "Microsoft.AspNetCore.Components.Forms.dll": "sha256-zqsvvyL\/zGYEvF\/crCJ8Dt1fpz7KA7V0WEJBp\/9\/Z3w=", + "Microsoft.AspNetCore.Components.Web.dll": "sha256-sS1yMtnuQwl7ojhNaD0R8ObmmKTreSfkFAatoIeOKPw=", + "Microsoft.AspNetCore.Components.WebAssembly.dll": "sha256-ff+PbIVunuYwtTBsmbmdSZ\/VpZrr7Jwh3MzQDeFTNQ8=", + "Microsoft.AspNetCore.Metadata.dll": "sha256-qPWVrbWXmW6YIYXloJKVtDQ3yDqHpuWagvneU3Y+cnQ=", + "Microsoft.Extensions.Configuration.dll": "sha256-c8yYhfrOBLEnOBglLTu9peXSbJDwFpuT4UQiXSv28Og=", + "Microsoft.Extensions.Configuration.Abstractions.dll": "sha256-5Otet+KKVUjNkE\/hqcNWmt75H1K2VNuKPFagpRd6Ces=", + "Microsoft.Extensions.Configuration.Binder.dll": "sha256-wNKhG3Ovx8jqxbscz2AALlsTLfI6GL2dyDhe63mSsoM=", + "Microsoft.Extensions.Configuration.FileExtensions.dll": "sha256-n2fRP2\/1tGNzaCF5PU4hgTSlHK886OviBf2YAds3NdE=", + "Microsoft.Extensions.Configuration.Json.dll": "sha256-R28\/ywLWxIcFxKtDIj0IxC+bXi4urX6BHeLL24R+vTQ=", + "Microsoft.Extensions.DependencyInjection.dll": "sha256-KqgYK1NWqMxcNfw2Qah+gUhX2Nm+OZrHjyYDQ3VNCeA=", + "Microsoft.Extensions.DependencyInjection.Abstractions.dll": "sha256-nM2DA1GqKLxoPU+NHO\/Z5yQWH5ctJb+2Tu5b9VxIxeM=", + "Microsoft.Extensions.FileProviders.Abstractions.dll": "sha256-7PzvEcQvpK1c8tTX9VPI8AF+XrekqbAytNBQXJjvTvQ=", + "Microsoft.Extensions.FileProviders.Physical.dll": "sha256-sXujvGMZDgBBZ9HqfcEq9XsM0pvwyhPt60NA9qLDzGI=", + "Microsoft.Extensions.FileSystemGlobbing.dll": "sha256-viiXOG0fwhWobT0TQ1ZOJiZBdRvYRlWbDtjz+6d8sQI=", + "Microsoft.Extensions.Logging.dll": "sha256-GDZQCBtVHfrZZ6fL95lGoinLeUWLjQShLbfESwO7mrc=", + "Microsoft.Extensions.Logging.Abstractions.dll": "sha256-w+c+xfLh8QIAwluhugyPc8sPvAmmIC\/UTxnugT7Oido=", + "Microsoft.Extensions.Options.dll": "sha256-eGESyy9mRu8RcCGajAu4E8nxSmeB5nxiZkFPVaZ5Vl0=", + "Microsoft.Extensions.Primitives.dll": "sha256-jOmoWSfsdQexH\/6QCA56gR1RMEqeix2iDDUBWbpAOQI=", + "Microsoft.JSInterop.dll": "sha256-OBL83ANjfum7vDXWY9JzTSOLSr5DTTajTez0w\/70pAc=", + "Microsoft.JSInterop.WebAssembly.dll": "sha256-i3Tuz9JFTwJkZ9+s\/BT1Vpbtl5naeHj\/5Aq06H+nd\/s=", + "System.IO.Pipelines.dll": "sha256-6+E55JXedimdw1c1bDtVg4K7XuWjVWVTifH8QpfzXSY=", + "Microsoft.CSharp.dll": "sha256-DTiQAlsyxleRzVYl5Q95n\/wAbxwMf5CzRWBGSNndce4=", + "Microsoft.VisualBasic.Core.dll": "sha256-XpwlSCHsRJfMGP3vd1Zq\/e+KsMTv3frR\/Ftx27lsqxU=", + "Microsoft.VisualBasic.dll": "sha256-2YPfWC1cxNby7+lFjcW6I0FjJO+1hQD2Tx9pAslpOaI=", + "Microsoft.Win32.Primitives.dll": "sha256-p3C+90WlVAjddr27lDSZ66mIFlc6F0A4aelILkgKHU0=", + "Microsoft.Win32.Registry.dll": "sha256-fUqOutjkihP4PY2Eyn37CsgZKYoRikeQccy8J6hsfb0=", + "System.AppContext.dll": "sha256-t6Zreui7zFSw3c6IC1WpAo1V\/OuHOGotL9gJcRh8TvQ=", + "System.Buffers.dll": "sha256-Rr9SvcWPlGSvayICsgnqQJK0OeWe2m25wwJTNCPuf84=", + "System.Collections.Concurrent.dll": "sha256-7ikWFO3EjA773ell+B5EMYFt7OHzVG46mRr4jYQdyvc=", + "System.Collections.Immutable.dll": "sha256-hchEsTzQ8DcWMNTQHWafi3gewzjjaykjgADdaHT0z9Q=", + "System.Collections.NonGeneric.dll": "sha256-hXLOV7rHImmRuLzhnJULO39\/jg0wmu3bWS6GcACB8JQ=", + "System.Collections.Specialized.dll": "sha256-BTNKhTYhFwkOdB\/\/vEd3SsBw1vo5jam\/vTUU\/PHOUmc=", + "System.Collections.dll": "sha256-Hfd3VyXmqthQWRVQtmMM1brKz9mLtJOeS1Fwd5Fkkbs=", + "System.ComponentModel.Annotations.dll": "sha256-G7DizN2\/WB6PSfu7yREE83VvqvID9DxDJ9CQOm5OJ9s=", + "System.ComponentModel.DataAnnotations.dll": "sha256-qzRVEfUET67ioAnT0RznTagwjLBBKMPaAGvAfRzRE3A=", + "System.ComponentModel.EventBasedAsync.dll": "sha256-ZXBzt34cMpYI69Ou\/Rijmm4+CuxZ2+6W0P\/eErxcfdM=", + "System.ComponentModel.Primitives.dll": "sha256-fwuJJCfitpSohko3SnLvnJX4+5UNuH4GR2ieaFgojPU=", + "System.ComponentModel.TypeConverter.dll": "sha256-k3wJn8A4\/\/84p6s2JDmYSSzegw4P6DQWSVWu4547840=", + "System.ComponentModel.dll": "sha256-nVqe9YfUFGVfdYfhgrIsoT9YJ6YKRh0hA5gywmpaxjU=", + "System.Configuration.dll": "sha256-LJ1W0QuoJIZyRwSCsDCy\/qhXxk75P+Jr7QrseQRtLlA=", + "System.Console.dll": "sha256-CZW1x9WLZW\/8BLPvegtvSm8fpk9JEdYG+UFVUrvKax4=", + "System.Core.dll": "sha256-EQ7hUH6IBoSV6limPdxUV2hSmn\/OUdbcqWHc5TTQFJ0=", + "System.Data.Common.dll": "sha256-kqBQBBPXDXFuM7Wt3km8xjpmho2LAlb0GPtDH78bsKc=", + "System.Data.DataSetExtensions.dll": "sha256-KismBQJEPh4vrmmJ+6AM9mRVA5bqBPRP7JNgdmX1vIc=", + "System.Data.dll": "sha256-HnOqoXQON9wKp2MBkmm005AIkSD++P4CD5mDCIXSM6Y=", + "System.Diagnostics.Contracts.dll": "sha256-fgQjVXfB0lM7gAhETAA1alCjPPXlVN7jPsuBT626gmo=", + "System.Diagnostics.Debug.dll": "sha256-vWhuizbT3BcraRLloEE1z\/9OVpvDSFNTi+gRGTF3yLw=", + "System.Diagnostics.DiagnosticSource.dll": "sha256-c9\/2woK2NiIQVcMCduhXVbrB4cLq8bFYAtyh3+IjLiU=", + "System.Diagnostics.FileVersionInfo.dll": "sha256-I5mXaY\/kmdMVRqQa97+udyqQcsWw6qwDVy4lfmuA6Mg=", + "System.Diagnostics.Process.dll": "sha256-CSV7rAGb49mUp5myhjP6TuN4m+Da7yzbvjKZTKyS9As=", + "System.Diagnostics.StackTrace.dll": "sha256-PCw+c6+cWh7jvn0lf2xUPH9LDhtoH2uKeOGAqFH1\/sM=", + "System.Diagnostics.TextWriterTraceListener.dll": "sha256-IfcpavKuWN8+9dar9DNGR0VVErM7VcJXGh3\/e8\/7aJQ=", + "System.Diagnostics.Tools.dll": "sha256-Pd0AKzbexhmOEy4fzO0oVhI8JLmHDdnKcRcqv0I8Xy4=", + "System.Diagnostics.TraceSource.dll": "sha256-o0nZvh32wiUBRSDYeEW8lYdLNzdLrFXPlOz\/FlWScUI=", + "System.Diagnostics.Tracing.dll": "sha256-mDXcAJDyJLRK28S+AbkXisgMdMnqw\/yrVsV4vrQqyic=", + "System.Drawing.Primitives.dll": "sha256-cHnEhg0Hl74wfFBVVtGyiG3PiFPCKnNTdG6oS6ouKuU=", + "System.Drawing.dll": "sha256-Xth1Mp025xqdHL0sNVmLAC0mwYKP2KyGxv77Ov4U0j4=", + "System.Dynamic.Runtime.dll": "sha256-+JSklph8VwypNmKN1NvZWrqhol6HmsZhy6\/a7NwqSiA=", + "System.Formats.Asn1.dll": "sha256-jRIlBK0AXKpWqp9jhxJEg3KwA2wXQyr1s1FDQTAE5po=", + "System.Globalization.Calendars.dll": "sha256-XGlPyxjvtMmM71R+wvxct6BOClsk\/66Nw88vr\/wiy18=", + "System.Globalization.Extensions.dll": "sha256-DGBQx9eLm95Qd4bCASAkIV3IjeRhjQk8K4iB8FiC\/HY=", + "System.Globalization.dll": "sha256-p1Kg7JYY8A\/9Zu1Bs37Ov1sfVmXX4NEkWD8ZuT17lhk=", + "System.IO.Compression.Brotli.dll": "sha256-ZHuM\/O8FuaN8Y+VikxnW6gx3Dw06A7e8Tga194jpLRA=", + "System.IO.Compression.FileSystem.dll": "sha256-adiIihbdzJKEWvHj9R+wVXoZSs0yyrHd4sJRkvk2QS4=", + "System.IO.Compression.ZipFile.dll": "sha256-\/Fblw9ifsuFvYhitfTIt1SLdE0QdjcdYnwJauI41dgk=", + "System.IO.Compression.dll": "sha256-fL\/oh7ZbDjZHtFfeA4qA4vOB0jYquMGI6g1EOMiETe0=", + "System.IO.FileSystem.AccessControl.dll": "sha256-vF5g0DtXchZ\/ykI19sWXkMi6NJLgNLGTz9OrqlkAomU=", + "System.IO.FileSystem.DriveInfo.dll": "sha256-NIiDOxvjLRiSlUmAAjIKBEMA5R4fS2lhPbkQpOx7V0Q=", + "System.IO.FileSystem.Primitives.dll": "sha256-T09qbdzK1TMVz+ugkX6wSyX4EHcMA7McCCeAv+4h1os=", + "System.IO.FileSystem.Watcher.dll": "sha256-3\/SYNbAJUfi5h4eZ8jVTRIESPp4aINKzMNrEfn1\/0bQ=", + "System.IO.FileSystem.dll": "sha256-hqGZt\/GkCF\/VviK3WlcD0lDbU7TmdzqJCMmLqNhdvmU=", + "System.IO.IsolatedStorage.dll": "sha256-KV8lk4XaxthbFcnRcUZhFb3Sf+xYrv3LCDVq5QuEI7E=", + "System.IO.MemoryMappedFiles.dll": "sha256-XEaBeDUrqtUxYQUlmwDtqr6uwxf3k11dBfjKRJo7J7Q=", + "System.IO.Pipes.AccessControl.dll": "sha256-6hMgm2yZb\/Liph8bW\/3MPPeTxWQTzZDGVp257pNL+9I=", + "System.IO.Pipes.dll": "sha256-EUvq+Wtgn\/\/R8GQr0zHGBBOHOgg7gKCYGzIDQePcnnI=", + "System.IO.UnmanagedMemoryStream.dll": "sha256-haParxbxAdWXj5YHnRrwFPG1Coiz+UyVD2dj5pk7NoE=", + "System.IO.dll": "sha256-wgjIziVLwT9JICTA9j1Wc2QiPtz6ddGv1N4emIiZUZ0=", + "System.Linq.Expressions.dll": "sha256-JnbfKcHWk4mS0hThh0iK\/xXoBDZPYYHPBFg4rCkfH74=", + "System.Linq.Parallel.dll": "sha256-IoWwtz46jyS5TYpe3oq2jhAvZaNL3qrUqH\/pn6g81ps=", + "System.Linq.Queryable.dll": "sha256-+ilJppoIhpMWFf7BkgJN1O\/K2WZRobVzdL5uQEJRpYI=", + "System.Linq.dll": "sha256-q0TU9UBN5qrMjjExPwfayUxXICy2bJa8e1vDJBHhzA8=", + "System.Memory.dll": "sha256-oYk6qi1r8sg+Zl9h1GNvyGaEdM0ACZ5U2u4FXvW2T9Y=", + "System.Net.Http.Json.dll": "sha256-lOFQm8BMQn9Q0IW6CTb5OjjwFpn2HzqnIku292UDK7g=", + "System.Net.Http.dll": "sha256-V5KrR46s6mJoVZL7XlG3y7h1iGC0oZuTgB+Z7WZ+crM=", + "System.Net.HttpListener.dll": "sha256-IvzjBKYtbMP15gaaMkTofPoB7YOvqm1dPrbBG0n2Nek=", + "System.Net.Mail.dll": "sha256-gedlGV\/sY+UjzzIOJMBJvcy00GitWO0v206FV8uzDSg=", + "System.Net.NameResolution.dll": "sha256-h6jdLrsKU8UI\/EXQYpKRJYjrpLsKkJj2u+ZcVGdHSYg=", + "System.Net.NetworkInformation.dll": "sha256-xd8n8NF4u5MakSPKcU3JhU+bClghk3BpDJbb0JZkAHU=", + "System.Net.Ping.dll": "sha256-kfkfLQxfducMqHPORt29USgsxycg99IjvPscCrAwcnc=", + "System.Net.Primitives.dll": "sha256-jiQTkbLwXx5cLqgy+hASC4lEamtNEV4rxGkHsquBJRM=", + "System.Net.Quic.dll": "sha256-qfaWQS2lx8owjnPpqbz3rp19kfi7FUS1Hvv3\/gIEpsc=", + "System.Net.Requests.dll": "sha256-jWJxHXMEDDX2PkxR1yJlkUDaK7AorSL59lGmT3\/gplY=", + "System.Net.Security.dll": "sha256-YJZYS7\/x9gPFzLKH3zKEuVrshMkxLvE6aROFXkf1Gn4=", + "System.Net.ServicePoint.dll": "sha256-pQZ9QaquUDBJKoOr\/j9reDtaEAxKECOG10DEFnFE7J8=", + "System.Net.Sockets.dll": "sha256-oo5bxuBWA+nyea3MzKF+JAbQuzixrxPP3Sdc6i\/jQE0=", + "System.Net.WebClient.dll": "sha256-2RXo1OzsG56GMi0d6C8ZecTUlQTAxZfgtAgSwwFM4sI=", + "System.Net.WebHeaderCollection.dll": "sha256-0HFugpF3U82V7giQcVpAvyNmGGsirjBysbrhicIE\/D8=", + "System.Net.WebProxy.dll": "sha256-dPDyqfsZyDLrWJpWL+hH3iip\/DCa4YCO2vOsnB1QNeo=", + "System.Net.WebSockets.Client.dll": "sha256-Li4Ui256PFinke6S5e4FPxsN8WEpuwZQdh7B0859Oao=", + "System.Net.WebSockets.dll": "sha256-25K29AqqKbYzlR3C0U53ovqb01XjXlG73TAQ8oSFKok=", + "System.Net.dll": "sha256-TqXc50KWlt6yhNrftm5myBeh7L7IPwIVmLvVQtC0fPI=", + "System.Numerics.Vectors.dll": "sha256-7xFg+9J3CDv00FiXUVpHjjMG+a2sUpDTD1GxwzQfvz0=", + "System.Numerics.dll": "sha256-glxIjyXPTmRAr+g7WWz\/gylFj94ufwu8EgcADoSn4UY=", + "System.ObjectModel.dll": "sha256-5XPvCN7bvD+nvEK7lg0a8QvC5YfEzVtQs532ntmDRkc=", + "System.Private.DataContractSerialization.dll": "sha256-\/58zfnjF5D\/uGHrpeV96DNkmAwghZIUDLQCvYMdcqMQ=", + "System.Private.Runtime.InteropServices.JavaScript.dll": "sha256-sZq8h6v9+HzJduNuvBE9PXllpbfTmX6hH4lTopVhtiY=", + "System.Private.Uri.dll": "sha256-\/fxECHlxoTOs8Mn1aU4ee4b2wTHHTTjP7K17O0gldGk=", + "System.Private.Xml.Linq.dll": "sha256-4Jmzoa+wHxawQOgruqhEHFo7VoJu7PuQ0VxHZAqMEwA=", + "System.Private.Xml.dll": "sha256-ogwWaUkhSaONs\/a34hxZNQhXnTtNuPtuQeYksDwUUeY=", + "System.Reflection.DispatchProxy.dll": "sha256-pIeoi5ZyWfM6xrl8lDKv4VreByvMN7lPnQR9AgJeE28=", + "System.Reflection.Emit.ILGeneration.dll": "sha256-LueM9AEwxiu994zaI4Y1R+GnkRzarZ3A\/r2cwHojqmE=", + "System.Reflection.Emit.Lightweight.dll": "sha256-G7ikMo\/7LTXJfdmuMt+hPzZyNrq0xeEyOpIgcqjXwxg=", + "System.Reflection.Emit.dll": "sha256-WyKK9JFByPsUH71TmzVN0+QQ3Buc8s8+yVlrfh+me9I=", + "System.Reflection.Extensions.dll": "sha256-cVIe9uA5yIu4uWK+KDC58KMah+989j\/gCQAwDPDRMCo=", + "System.Reflection.Metadata.dll": "sha256-eiHYxLZcPWQ4NplkJApjDAjer3\/CXzkbjIlWP4BVxZY=", + "System.Reflection.Primitives.dll": "sha256-9xKjdHeGa+Z8HDXsBLU9VT6KDvrYyAfxhY72ghjULxk=", + "System.Reflection.TypeExtensions.dll": "sha256-O2P65lwKgKAiyVTQV+448\/SBwGBxvFhwT3mj8NH8cvc=", + "System.Reflection.dll": "sha256-+RQVFypgSkJT+ZT2ZGK3yxL2frNDGw3mdDfPJFso6fA=", + "System.Resources.Reader.dll": "sha256-7MF5gqMwKBtG6syx4mA9UaDx3VZFPjkfQZPLBvJT4\/s=", + "System.Resources.ResourceManager.dll": "sha256-OFykbIMSJdRuTA4xMcdHimmxnT73rOQDw5NeSE+9htA=", + "System.Resources.Writer.dll": "sha256-UUUI+5adbdjkjlZ0fveFLPl6JRRi28iHIwMshfIgJRE=", + "System.Runtime.CompilerServices.Unsafe.dll": "sha256-CqSssMJbGk0yrSgRvIeImkILKO8qrvy8ygJi4cCvMVo=", + "System.Runtime.CompilerServices.VisualC.dll": "sha256-jTN3cN8EukzizquRq1rrP5ofD1pUbMz4ApV13ShdS0A=", + "System.Runtime.Extensions.dll": "sha256-IzhYlVJmqKtdy6Rya3AXNX5\/r5xgw4tu2waaF\/25Qiw=", + "System.Runtime.Handles.dll": "sha256-rFFxn2HCy4++vJDCYgh23aTRopEGI5hXPwhmTRvdpGE=", + "System.Runtime.InteropServices.RuntimeInformation.dll": "sha256-RTnP9JTj42tuhKZTCkPXhgCDqq4+05e56CyCDaOwKl8=", + "System.Runtime.InteropServices.dll": "sha256-eUlrst1Sr9rfmCvDdYAQr\/rY7imOTrpOOUle3ukkDqg=", + "System.Runtime.Intrinsics.dll": "sha256-ozXQ0FFvGz0b20edF1DSLCZIUaPXQopuPnYXRIY07KE=", + "System.Runtime.Loader.dll": "sha256-bqS89LjjIsGfqljlGhzpFGGNs07aNWmN+x7eLPcW8R0=", + "System.Runtime.Numerics.dll": "sha256-Abgl5SnjdbjOWl2wNjl5DIuEG7ShWKWt4o9lgUULy0M=", + "System.Runtime.Serialization.Formatters.dll": "sha256-iRHmMGm6ySbJzcFyAC25e989ydE0eo3IsN55IsLu3d0=", + "System.Runtime.Serialization.Json.dll": "sha256-VfzXxKXtJSyY+KmHdIMN3c6xeDyqgA9+WclmQKeR54Y=", + "System.Runtime.Serialization.Primitives.dll": "sha256-\/rBPDB5azk5JlSWPfLbm2WOO7YQKLnLtrN7gHaxe9Yg=", + "System.Runtime.Serialization.Xml.dll": "sha256-8QtC\/IjtvFItYYwXk0VLHGJMDqL9P7bPer8JKZOYGfQ=", + "System.Runtime.Serialization.dll": "sha256-U875gqshsO5L+YAP6hyIKfweNpixtkOG6qNE52O0q+w=", + "System.Runtime.dll": "sha256-j9kWpDzD40DAwxrTERegus\/G7KnF8YSKO8S065VKT4o=", + "System.Security.AccessControl.dll": "sha256-TBfQQ5Fa04pTX261SYI0vpf8+O4T+yAG2mhvky\/5Jbs=", + "System.Security.Claims.dll": "sha256-oEHwCa7DPtnKwOS4WZIdN4q4bubvehYds0YzFzS0gs0=", + "System.Security.Cryptography.Algorithms.dll": "sha256-LBH7u7zq5JA+sR5nLpJLlHPJTYtfd00w1GBdKZkMH2Y=", + "System.Security.Cryptography.Cng.dll": "sha256-n8cw6P2YbxKAmwAIzHGy+sAikeRYSLvRBfshBlGsQHs=", + "System.Security.Cryptography.Csp.dll": "sha256-6aBpB9npiSFjK6NFPlw57\/PaieketdyHBWAcVOprZvY=", + "System.Security.Cryptography.Encoding.dll": "sha256-LzxcqpuMxoj\/goByx9RVNGm+5j6Fp2KG8KYmBRieuVk=", + "System.Security.Cryptography.OpenSsl.dll": "sha256-rGbXDCZtjr2+wLlSSlFxzszQXJ3Avx9JWLD\/YXggUL8=", + "System.Security.Cryptography.Primitives.dll": "sha256-ySmjc4oFIVwc4rbf9gHjQk\/H5xqj1yKnrr8tphQ0K8A=", + "System.Security.Cryptography.X509Certificates.dll": "sha256-cYr\/etpjirQZ3GfarnhT3NkgQyNnMDBH276C4t3h\/cU=", + "System.Security.Principal.Windows.dll": "sha256-A5M99Vw6QUTSCcPSUX5zCe9vlkb1Ld71\/943z2g3GVQ=", + "System.Security.Principal.dll": "sha256-Xbl8i4ZjksXX2c+HU365Vuv9x5FecSEnelzX9y2kvO4=", + "System.Security.SecureString.dll": "sha256-Zfqdu3+ZEz4HUJXD12Ln\/E8FCCvgIaiRpeBb+mISyks=", + "System.Security.dll": "sha256-q90WBQXBCNV2FXxFC46wlPgqkEUEJKSMHdoV1Br4A6s=", + "System.ServiceModel.Web.dll": "sha256-+6G03ITowt7oy\/aaLRWFp5PN6m84+ewtNab1dajUIhw=", + "System.ServiceProcess.dll": "sha256-LVBg2uy0nYFdnj1q1Qj4R7LPNNOJlSoLJDPIZKxpyQM=", + "System.Text.Encoding.CodePages.dll": "sha256-hb4KQccZSB\/UVJu3kYvqdED2StH537og4MwyxOhK2Xk=", + "System.Text.Encoding.Extensions.dll": "sha256-DzFbfa5m+kpYHHAN70x7kNHYcSQEN6qGOp45cNaUkf4=", + "System.Text.Encoding.dll": "sha256-nYxMecx8rl4XEJz16hX5mNoZyXwKyo\/oyqOgqa8ngPo=", + "System.Text.Encodings.Web.dll": "sha256-KOfhwu36j6PGKifllcw2pCvVnI5bXjQ1uy+fws8SX4k=", + "System.Text.Json.dll": "sha256-ZDegGiuKKspUO7SseFjAazlrG\/XL0+3OulWB61RkxHY=", + "System.Text.RegularExpressions.dll": "sha256-wbE7C5Vzd2yGSapmTog4uzwEYAOcjP42D8mv7o8UztQ=", + "System.Threading.Channels.dll": "sha256-pR4ZTBTXQGD5ttbQLbHVc8QDJ6qbs5NpSkOdwVnrM7Q=", + "System.Threading.Overlapped.dll": "sha256-Bi2rKiVug79LLXf3KnDkfTg8gXN1iX2D5Uuc2314Wkw=", + "System.Threading.Tasks.Dataflow.dll": "sha256-ademXYm2dl74ssKZ4zE6mZbm1CCPDRVBGfVCISLxp4M=", + "System.Threading.Tasks.Extensions.dll": "sha256-gMObICJqeB\/HOEWylXLTQ6wyaK6EWXaMAAOMrZC6Lpc=", + "System.Threading.Tasks.Parallel.dll": "sha256-E9bQEMr\/i62sCw253\/\/mQqb87atvymHWBgFpCGXcf44=", + "System.Threading.Tasks.dll": "sha256-IrhLF6slaiCsr6liKGz1TOFcCGRQAsbb+0+SXVreBls=", + "System.Threading.Thread.dll": "sha256-kzMm8Wxs1qQdYdfxL0Kt4OTGIRyZh9MSj\/OLBY1Zxr0=", + "System.Threading.ThreadPool.dll": "sha256-famO3aY6bbG0A2gdbw8J6hLAyPFXxrT8uMsWe9MVJaI=", + "System.Threading.Timer.dll": "sha256-9rYxsl+493T8HHVDB24pXOfP9EFEWg32kqh841\/9kwY=", + "System.Threading.dll": "sha256-D+mOgDQ\/OIe02R4GBoDEkzOsMQl42gXx8wdzYOkgc1k=", + "System.Transactions.Local.dll": "sha256-bHAJZGLDyFhY2oZN4esSF40n+m+eL9yHAk0sZRSWBXQ=", + "System.Transactions.dll": "sha256-n2hpTYnj3p6+EtowlUvqJuLpL73TiLHckM6DW2Ku6hw=", + "System.ValueTuple.dll": "sha256-fu4KNW5Rf1TlvI+sFCEE9hTW2tlATbgPhMqeinlU\/eo=", + "System.Web.HttpUtility.dll": "sha256-3YGb3omuC6Q+Q86kK0NvRcau1ELuITFKbOEtYfy\/AJs=", + "System.Web.dll": "sha256-hNuDr0Dl73i32MmchM6PJt3Zj3kCeEME0tDs\/YtcBU0=", + "System.Windows.dll": "sha256-wQo8T9G7Ud5ZHeFPIhD5T3mgrZinlz3yOAbm4oV9FLA=", + "System.Xml.Linq.dll": "sha256-uQMOTPOLA0niqNqAl8p2Jtzatd\/6joKmws8pUSSulOQ=", + "System.Xml.ReaderWriter.dll": "sha256-NDgXO5olB1rW9Ej\/fSAGfhEbwWuJirOsBT9g\/DJuW1k=", + "System.Xml.Serialization.dll": "sha256-VB2dfQx8tjNMJh5blyXchThFD3ZSoEXZuyCmWMSEf5E=", + "System.Xml.XDocument.dll": "sha256-7f2A4S69q\/\/\/NoRMzo\/S2tZXlOIILAq3VXpGlLOSfYc=", + "System.Xml.XPath.XDocument.dll": "sha256-qJFhN5jZKFIVM5ciVBMQ1LxDA2KNa0DlcCHROkEd6Pw=", + "System.Xml.XPath.dll": "sha256-kiFGSepc9jc12YTeMagztRjQQ\/RpBm\/hrvEtxlVHtDU=", + "System.Xml.XmlDocument.dll": "sha256-2eYuiGiLeqmkmz7pKFlxJV1Rp4DztFYiGdSYc7CC8KY=", + "System.Xml.XmlSerializer.dll": "sha256-m2vndNkziRVbRa8+Uimxmp\/H4\/iWLqmqlgm3kIvldjE=", + "System.Xml.dll": "sha256-LtfKOlwYMcSzbkQhXw3NEnOC6hYLrVgvC3Ls1UMOtAM=", + "System.dll": "sha256-BfD7NThExjelvevG5DSS5CGh5\/AyNynAvXquUtMcAN4=", + "WindowsBase.dll": "sha256-bNpUu6qzQtGy+s8hBWoEFIwnRUrKtIv+wcIjuXDxU0Q=", + "mscorlib.dll": "sha256-ghlJNtzzYlKIliGPuf0A0Yu6dmLycSx3F9uyeddFb\/g=", + "netstandard.dll": "sha256-qpOz\/RBwhlIYfaE2GDEmjiproxkvSf2b9GeqHxvH+lg=", + "System.Private.CoreLib.dll": "sha256-sfzSZ3YKC2rpF77TVOKLuPgQag93QXr9U4AUc9d\/LKA=", + "CS_Todo.dll": "sha256-9oImoVHVCpSklrUaBL\/57CQopy8ZbBV9n8UuUE8xEsk=" + }, + "extensions": null, + "lazyAssembly": null, + "libraryInitializers": null, + "pdb": { + "CS_Todo.pdb": "sha256-qOKhhftx65\/E3YIfnTI7UzN1+nub1PeouqBzLxdc\/iY=" + }, + "runtime": { + "dotnet.6.0.5.itaht6zf1c.js": "sha256-783uOt0jgblQfP6Yz5TJeuW2xxtl6UHZQPngZtCz79U=", + "dotnet.timezones.blat": "sha256-vRU6+wGzQ3FJ0JtyPJtipblPe9MvJf+qKY20xZhuyKQ=", + "dotnet.wasm": "sha256-vmRDDmubs49Hwffzas8p5i8FwcPcYxb33H6g5\/2UyYk=", + "icudt.dat": "sha256-Zuq0dWAsBm6\/2lSOsz7+H9PvFaRn61KIXHMMwXDfvyE=", + "icudt_CJK.dat": "sha256-WPyI4hWDPnOw62Nr27FkzGjdbucZnQD+Ph+GOPhAedw=", + "icudt_EFIGS.dat": "sha256-4RwaPx87Z4dvn77ie\/ro3\/QzyS+\/gGmO3Y\/0CSAXw4k=", + "icudt_no_CJK.dat": "sha256-OxylFgLJlFqixsj+nLxYVsv5iZLvfIKMpLf9hrWaChA=" + }, + "satelliteResources": null + } +} \ No newline at end of file diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/+2ZLXnU1.gz b/CS_Todo/obj/Debug/net6.0/build-gz/+2ZLXnU1.gz new file mode 100644 index 00000000..bf8cb6b9 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/+2ZLXnU1.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/+5zAAppF.gz b/CS_Todo/obj/Debug/net6.0/build-gz/+5zAAppF.gz new file mode 100644 index 00000000..c2ed6cee Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/+5zAAppF.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/+8ir2EqM.gz b/CS_Todo/obj/Debug/net6.0/build-gz/+8ir2EqM.gz new file mode 100644 index 00000000..ac2caceb Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/+8ir2EqM.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/+DhISid1.gz b/CS_Todo/obj/Debug/net6.0/build-gz/+DhISid1.gz new file mode 100644 index 00000000..2a9938c9 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/+DhISid1.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/+FnVEix6.gz b/CS_Todo/obj/Debug/net6.0/build-gz/+FnVEix6.gz new file mode 100644 index 00000000..0b0bb4e0 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/+FnVEix6.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/+GAW7ng4.gz b/CS_Todo/obj/Debug/net6.0/build-gz/+GAW7ng4.gz new file mode 100644 index 00000000..c6eed2f5 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/+GAW7ng4.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/+S+vpmjb.gz b/CS_Todo/obj/Debug/net6.0/build-gz/+S+vpmjb.gz new file mode 100644 index 00000000..1b320811 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/+S+vpmjb.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/+UJu3XHl.gz b/CS_Todo/obj/Debug/net6.0/build-gz/+UJu3XHl.gz new file mode 100644 index 00000000..9e37bea7 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/+UJu3XHl.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/+XGOsjM8.gz b/CS_Todo/obj/Debug/net6.0/build-gz/+XGOsjM8.gz new file mode 100644 index 00000000..9003413c Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/+XGOsjM8.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/+eybwpsE.gz b/CS_Todo/obj/Debug/net6.0/build-gz/+eybwpsE.gz new file mode 100644 index 00000000..c5401014 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/+eybwpsE.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/+hbvt+zz.gz b/CS_Todo/obj/Debug/net6.0/build-gz/+hbvt+zz.gz new file mode 100644 index 00000000..ceb0c603 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/+hbvt+zz.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/+w7YWWkg.gz b/CS_Todo/obj/Debug/net6.0/build-gz/+w7YWWkg.gz new file mode 100644 index 00000000..ad5878b1 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/+w7YWWkg.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/0LDK0b+c.gz b/CS_Todo/obj/Debug/net6.0/build-gz/0LDK0b+c.gz new file mode 100644 index 00000000..e4bbaa2b Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/0LDK0b+c.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/0aw+2Bxa.gz b/CS_Todo/obj/Debug/net6.0/build-gz/0aw+2Bxa.gz new file mode 100644 index 00000000..b02dbc68 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/0aw+2Bxa.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/0k5pxcbT.gz b/CS_Todo/obj/Debug/net6.0/build-gz/0k5pxcbT.gz new file mode 100644 index 00000000..26cb4f2b Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/0k5pxcbT.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/17gn4A+j.gz b/CS_Todo/obj/Debug/net6.0/build-gz/17gn4A+j.gz new file mode 100644 index 00000000..47001eee Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/17gn4A+j.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/1UaZt5mD.gz b/CS_Todo/obj/Debug/net6.0/build-gz/1UaZt5mD.gz new file mode 100644 index 00000000..4fe68f05 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/1UaZt5mD.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/1vm4IFaG.gz b/CS_Todo/obj/Debug/net6.0/build-gz/1vm4IFaG.gz new file mode 100644 index 00000000..bbf68757 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/1vm4IFaG.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/26gNfKbP.gz b/CS_Todo/obj/Debug/net6.0/build-gz/26gNfKbP.gz new file mode 100644 index 00000000..7b5b863d Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/26gNfKbP.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/2Hj+3exQ.gz b/CS_Todo/obj/Debug/net6.0/build-gz/2Hj+3exQ.gz new file mode 100644 index 00000000..8238273e Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/2Hj+3exQ.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/2VNuPiDX.gz b/CS_Todo/obj/Debug/net6.0/build-gz/2VNuPiDX.gz new file mode 100644 index 00000000..acb9ab28 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/2VNuPiDX.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/2n+36BA3.gz b/CS_Todo/obj/Debug/net6.0/build-gz/2n+36BA3.gz new file mode 100644 index 00000000..9260231d Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/2n+36BA3.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/3h7VFZey.gz b/CS_Todo/obj/Debug/net6.0/build-gz/3h7VFZey.gz new file mode 100644 index 00000000..8079d9cc Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/3h7VFZey.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/3kevzYbE.gz b/CS_Todo/obj/Debug/net6.0/build-gz/3kevzYbE.gz new file mode 100644 index 00000000..73608dc4 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/3kevzYbE.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/3madUA77.gz b/CS_Todo/obj/Debug/net6.0/build-gz/3madUA77.gz new file mode 100644 index 00000000..1d89693b Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/3madUA77.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/4FefMRN8.gz b/CS_Todo/obj/Debug/net6.0/build-gz/4FefMRN8.gz new file mode 100644 index 00000000..0ecc8689 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/4FefMRN8.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/4KpKYfXr.gz b/CS_Todo/obj/Debug/net6.0/build-gz/4KpKYfXr.gz new file mode 100644 index 00000000..682138bd Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/4KpKYfXr.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/4xtw6LPe.gz b/CS_Todo/obj/Debug/net6.0/build-gz/4xtw6LPe.gz new file mode 100644 index 00000000..93a73c35 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/4xtw6LPe.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/5bwqC54S.gz b/CS_Todo/obj/Debug/net6.0/build-gz/5bwqC54S.gz new file mode 100644 index 00000000..c1c48ec9 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/5bwqC54S.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/5gwUmMDS.gz b/CS_Todo/obj/Debug/net6.0/build-gz/5gwUmMDS.gz new file mode 100644 index 00000000..1dfbfdc4 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/5gwUmMDS.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/63kcE8QL.gz b/CS_Todo/obj/Debug/net6.0/build-gz/63kcE8QL.gz new file mode 100644 index 00000000..6904d485 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/63kcE8QL.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/6K7a1sxg.gz b/CS_Todo/obj/Debug/net6.0/build-gz/6K7a1sxg.gz new file mode 100644 index 00000000..0f5679db Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/6K7a1sxg.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/6za3LhEM.gz b/CS_Todo/obj/Debug/net6.0/build-gz/6za3LhEM.gz new file mode 100644 index 00000000..1ae18e67 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/6za3LhEM.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/79+eByEP.gz b/CS_Todo/obj/Debug/net6.0/build-gz/79+eByEP.gz new file mode 100644 index 00000000..a7aa54c9 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/79+eByEP.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/7JTnascI.gz b/CS_Todo/obj/Debug/net6.0/build-gz/7JTnascI.gz new file mode 100644 index 00000000..7cf03050 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/7JTnascI.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/8bVRGP9b.gz b/CS_Todo/obj/Debug/net6.0/build-gz/8bVRGP9b.gz new file mode 100644 index 00000000..84667116 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/8bVRGP9b.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/8e4i2wwq.gz b/CS_Todo/obj/Debug/net6.0/build-gz/8e4i2wwq.gz new file mode 100644 index 00000000..3681bdc7 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/8e4i2wwq.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/96shZgcq.gz b/CS_Todo/obj/Debug/net6.0/build-gz/96shZgcq.gz new file mode 100644 index 00000000..d64a6ae4 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/96shZgcq.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/9V1RKqW+.gz b/CS_Todo/obj/Debug/net6.0/build-gz/9V1RKqW+.gz new file mode 100644 index 00000000..050b3833 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/9V1RKqW+.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/9pTSquT+.gz b/CS_Todo/obj/Debug/net6.0/build-gz/9pTSquT+.gz new file mode 100644 index 00000000..0aa6b02b Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/9pTSquT+.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/BP4YSYLo.gz b/CS_Todo/obj/Debug/net6.0/build-gz/BP4YSYLo.gz new file mode 100644 index 00000000..5a8d5c65 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/BP4YSYLo.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/BqYnQ2NX.gz b/CS_Todo/obj/Debug/net6.0/build-gz/BqYnQ2NX.gz new file mode 100644 index 00000000..fce16d46 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/BqYnQ2NX.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/BwBrIccx.gz b/CS_Todo/obj/Debug/net6.0/build-gz/BwBrIccx.gz new file mode 100644 index 00000000..1faf6ecc Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/BwBrIccx.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/DExO9jJ+.gz b/CS_Todo/obj/Debug/net6.0/build-gz/DExO9jJ+.gz new file mode 100644 index 00000000..95421c7f Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/DExO9jJ+.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/DcYPHA+m.gz b/CS_Todo/obj/Debug/net6.0/build-gz/DcYPHA+m.gz new file mode 100644 index 00000000..5c35fac9 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/DcYPHA+m.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/Dr+tX3qM.gz b/CS_Todo/obj/Debug/net6.0/build-gz/Dr+tX3qM.gz new file mode 100644 index 00000000..1a1596bc Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/Dr+tX3qM.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/E+kJPdi4.gz b/CS_Todo/obj/Debug/net6.0/build-gz/E+kJPdi4.gz new file mode 100644 index 00000000..fc181ab8 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/E+kJPdi4.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/E98H+nSj.gz b/CS_Todo/obj/Debug/net6.0/build-gz/E98H+nSj.gz new file mode 100644 index 00000000..b1f0d4cc Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/E98H+nSj.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/EOhiOkXz.gz b/CS_Todo/obj/Debug/net6.0/build-gz/EOhiOkXz.gz new file mode 100644 index 00000000..92589b88 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/EOhiOkXz.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/EPqZK9Yz.gz b/CS_Todo/obj/Debug/net6.0/build-gz/EPqZK9Yz.gz new file mode 100644 index 00000000..d62ff697 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/EPqZK9Yz.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/ESlVORya.gz b/CS_Todo/obj/Debug/net6.0/build-gz/ESlVORya.gz new file mode 100644 index 00000000..dc9a28c4 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/ESlVORya.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/EmSAUKYY.gz b/CS_Todo/obj/Debug/net6.0/build-gz/EmSAUKYY.gz new file mode 100644 index 00000000..43b4c6e9 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/EmSAUKYY.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/FONcAOvJ.gz b/CS_Todo/obj/Debug/net6.0/build-gz/FONcAOvJ.gz new file mode 100644 index 00000000..466c9c13 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/FONcAOvJ.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/FYbG1Hpm.gz b/CS_Todo/obj/Debug/net6.0/build-gz/FYbG1Hpm.gz new file mode 100644 index 00000000..43999437 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/FYbG1Hpm.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/GsqSnXSV.gz b/CS_Todo/obj/Debug/net6.0/build-gz/GsqSnXSV.gz new file mode 100644 index 00000000..7c5fd030 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/GsqSnXSV.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/GtnGYZZM.gz b/CS_Todo/obj/Debug/net6.0/build-gz/GtnGYZZM.gz new file mode 100644 index 00000000..8f515fe0 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/GtnGYZZM.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/HEl9f72Y.gz b/CS_Todo/obj/Debug/net6.0/build-gz/HEl9f72Y.gz new file mode 100644 index 00000000..b9f7dbe9 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/HEl9f72Y.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/HOjRYT5U.gz b/CS_Todo/obj/Debug/net6.0/build-gz/HOjRYT5U.gz new file mode 100644 index 00000000..82206e8f Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/HOjRYT5U.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/HpXdBeJg.gz b/CS_Todo/obj/Debug/net6.0/build-gz/HpXdBeJg.gz new file mode 100644 index 00000000..67c98527 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/HpXdBeJg.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/JA8D0SGk.gz b/CS_Todo/obj/Debug/net6.0/build-gz/JA8D0SGk.gz new file mode 100644 index 00000000..781a9e1c Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/JA8D0SGk.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/JYfvtIIP.gz b/CS_Todo/obj/Debug/net6.0/build-gz/JYfvtIIP.gz new file mode 100644 index 00000000..789a07b3 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/JYfvtIIP.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/KUwlVoQo.gz b/CS_Todo/obj/Debug/net6.0/build-gz/KUwlVoQo.gz new file mode 100644 index 00000000..8cfbe95f Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/KUwlVoQo.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/KfePmeIu.gz b/CS_Todo/obj/Debug/net6.0/build-gz/KfePmeIu.gz new file mode 100644 index 00000000..3b6fadf5 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/KfePmeIu.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/KgAVvdsC.gz b/CS_Todo/obj/Debug/net6.0/build-gz/KgAVvdsC.gz new file mode 100644 index 00000000..28203c43 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/KgAVvdsC.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/KryUQiny.gz b/CS_Todo/obj/Debug/net6.0/build-gz/KryUQiny.gz new file mode 100644 index 00000000..5c16bebd Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/KryUQiny.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/LKuTbO7a.gz b/CS_Todo/obj/Debug/net6.0/build-gz/LKuTbO7a.gz new file mode 100644 index 00000000..c54dd22d Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/LKuTbO7a.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/LMPANNez.gz b/CS_Todo/obj/Debug/net6.0/build-gz/LMPANNez.gz new file mode 100644 index 00000000..6d440099 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/LMPANNez.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/MKJYd23m.gz b/CS_Todo/obj/Debug/net6.0/build-gz/MKJYd23m.gz new file mode 100644 index 00000000..41f9c5ec Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/MKJYd23m.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/MQ+2lKz6.gz b/CS_Todo/obj/Debug/net6.0/build-gz/MQ+2lKz6.gz new file mode 100644 index 00000000..0770050a Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/MQ+2lKz6.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/MsN5Be+5.gz b/CS_Todo/obj/Debug/net6.0/build-gz/MsN5Be+5.gz new file mode 100644 index 00000000..d4e43045 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/MsN5Be+5.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/N7TJtAYf.gz b/CS_Todo/obj/Debug/net6.0/build-gz/N7TJtAYf.gz new file mode 100644 index 00000000..cb620a87 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/N7TJtAYf.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/NVAzqX0Y.gz b/CS_Todo/obj/Debug/net6.0/build-gz/NVAzqX0Y.gz new file mode 100644 index 00000000..9d3bdf87 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/NVAzqX0Y.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/Np1LMJwu.gz b/CS_Todo/obj/Debug/net6.0/build-gz/Np1LMJwu.gz new file mode 100644 index 00000000..649c8733 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/Np1LMJwu.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/OY7PoISD.gz b/CS_Todo/obj/Debug/net6.0/build-gz/OY7PoISD.gz new file mode 100644 index 00000000..41a88f17 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/OY7PoISD.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/OYiTuEMW.gz b/CS_Todo/obj/Debug/net6.0/build-gz/OYiTuEMW.gz new file mode 100644 index 00000000..20e2a77f Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/OYiTuEMW.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/Oiyb3P6J.gz b/CS_Todo/obj/Debug/net6.0/build-gz/Oiyb3P6J.gz new file mode 100644 index 00000000..6e02ae52 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/Oiyb3P6J.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/Pa0u1erH.gz b/CS_Todo/obj/Debug/net6.0/build-gz/Pa0u1erH.gz new file mode 100644 index 00000000..7a841cc8 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/Pa0u1erH.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/PkhMudns.gz b/CS_Todo/obj/Debug/net6.0/build-gz/PkhMudns.gz new file mode 100644 index 00000000..81846281 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/PkhMudns.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/QW72x0Cq.gz b/CS_Todo/obj/Debug/net6.0/build-gz/QW72x0Cq.gz new file mode 100644 index 00000000..9f512e8c Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/QW72x0Cq.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/QXH+vF2t.gz b/CS_Todo/obj/Debug/net6.0/build-gz/QXH+vF2t.gz new file mode 100644 index 00000000..2bbf71ea Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/QXH+vF2t.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/QnfvO+Vg.gz b/CS_Todo/obj/Debug/net6.0/build-gz/QnfvO+Vg.gz new file mode 100644 index 00000000..15314ee5 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/QnfvO+Vg.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/RADkxc0W.gz b/CS_Todo/obj/Debug/net6.0/build-gz/RADkxc0W.gz new file mode 100644 index 00000000..2d843753 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/RADkxc0W.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/RLnl5TVX.gz b/CS_Todo/obj/Debug/net6.0/build-gz/RLnl5TVX.gz new file mode 100644 index 00000000..05e417a5 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/RLnl5TVX.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/RWEsCFuw.gz b/CS_Todo/obj/Debug/net6.0/build-gz/RWEsCFuw.gz new file mode 100644 index 00000000..e50cd81f Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/RWEsCFuw.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/SLQpa4WU.gz b/CS_Todo/obj/Debug/net6.0/build-gz/SLQpa4WU.gz new file mode 100644 index 00000000..32df2461 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/SLQpa4WU.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/SOfTcj6e.gz b/CS_Todo/obj/Debug/net6.0/build-gz/SOfTcj6e.gz new file mode 100644 index 00000000..41ac5bf0 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/SOfTcj6e.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/Sg3XLFkl.gz b/CS_Todo/obj/Debug/net6.0/build-gz/Sg3XLFkl.gz new file mode 100644 index 00000000..43a74326 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/Sg3XLFkl.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/TV9E4gLb.gz b/CS_Todo/obj/Debug/net6.0/build-gz/TV9E4gLb.gz new file mode 100644 index 00000000..ec56c3fc Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/TV9E4gLb.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/TiU9jybf.gz b/CS_Todo/obj/Debug/net6.0/build-gz/TiU9jybf.gz new file mode 100644 index 00000000..88d516ae Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/TiU9jybf.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/TjQsKJ7P.gz b/CS_Todo/obj/Debug/net6.0/build-gz/TjQsKJ7P.gz new file mode 100644 index 00000000..614af237 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/TjQsKJ7P.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/U0Cx4Ted.gz b/CS_Todo/obj/Debug/net6.0/build-gz/U0Cx4Ted.gz new file mode 100644 index 00000000..24301e7b Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/U0Cx4Ted.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/U1GjwWQV.gz b/CS_Todo/obj/Debug/net6.0/build-gz/U1GjwWQV.gz new file mode 100644 index 00000000..b47daccd Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/U1GjwWQV.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/UTD5E2ng.gz b/CS_Todo/obj/Debug/net6.0/build-gz/UTD5E2ng.gz new file mode 100644 index 00000000..27e1bdbb Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/UTD5E2ng.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/UYaQnQMN.gz b/CS_Todo/obj/Debug/net6.0/build-gz/UYaQnQMN.gz new file mode 100644 index 00000000..93f4b32b Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/UYaQnQMN.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/UZpmVZp+.gz b/CS_Todo/obj/Debug/net6.0/build-gz/UZpmVZp+.gz new file mode 100644 index 00000000..ead93ad8 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/UZpmVZp+.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/UziCi+WY.gz b/CS_Todo/obj/Debug/net6.0/build-gz/UziCi+WY.gz new file mode 100644 index 00000000..dae6a40f Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/UziCi+WY.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/V9nJZSNV.gz b/CS_Todo/obj/Debug/net6.0/build-gz/V9nJZSNV.gz new file mode 100644 index 00000000..6f7a77d5 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/V9nJZSNV.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/VfK8l1Sx.gz b/CS_Todo/obj/Debug/net6.0/build-gz/VfK8l1Sx.gz new file mode 100644 index 00000000..4a598c67 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/VfK8l1Sx.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/WA0wuQkK.gz b/CS_Todo/obj/Debug/net6.0/build-gz/WA0wuQkK.gz new file mode 100644 index 00000000..86c838a2 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/WA0wuQkK.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/WMNt4GKI.gz b/CS_Todo/obj/Debug/net6.0/build-gz/WMNt4GKI.gz new file mode 100644 index 00000000..02283acf Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/WMNt4GKI.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/WQfckDy2.gz b/CS_Todo/obj/Debug/net6.0/build-gz/WQfckDy2.gz new file mode 100644 index 00000000..ac0fcdd3 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/WQfckDy2.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/WUBNxRri.gz b/CS_Todo/obj/Debug/net6.0/build-gz/WUBNxRri.gz new file mode 100644 index 00000000..a8c51462 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/WUBNxRri.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/XeYKC2py.gz b/CS_Todo/obj/Debug/net6.0/build-gz/XeYKC2py.gz new file mode 100644 index 00000000..0bcf3008 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/XeYKC2py.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/Y4M8Plae.gz b/CS_Todo/obj/Debug/net6.0/build-gz/Y4M8Plae.gz new file mode 100644 index 00000000..ffa4048e Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/Y4M8Plae.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/YDvclHMg.gz b/CS_Todo/obj/Debug/net6.0/build-gz/YDvclHMg.gz new file mode 100644 index 00000000..3039d045 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/YDvclHMg.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/YMW+BE0p.gz b/CS_Todo/obj/Debug/net6.0/build-gz/YMW+BE0p.gz new file mode 100644 index 00000000..673c86e8 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/YMW+BE0p.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/YOMdCEDS.gz b/CS_Todo/obj/Debug/net6.0/build-gz/YOMdCEDS.gz new file mode 100644 index 00000000..794f338b Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/YOMdCEDS.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/YQkYcbEI.gz b/CS_Todo/obj/Debug/net6.0/build-gz/YQkYcbEI.gz new file mode 100644 index 00000000..a3849d9a Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/YQkYcbEI.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/Ygb5TvsW.gz b/CS_Todo/obj/Debug/net6.0/build-gz/Ygb5TvsW.gz new file mode 100644 index 00000000..a8b50629 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/Ygb5TvsW.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/YhOfo1DZ.gz b/CS_Todo/obj/Debug/net6.0/build-gz/YhOfo1DZ.gz new file mode 100644 index 00000000..72d7670c Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/YhOfo1DZ.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/YpqlEPw9.gz b/CS_Todo/obj/Debug/net6.0/build-gz/YpqlEPw9.gz new file mode 100644 index 00000000..a6e10595 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/YpqlEPw9.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/Yqw4dse1.gz b/CS_Todo/obj/Debug/net6.0/build-gz/Yqw4dse1.gz new file mode 100644 index 00000000..602d659d Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/Yqw4dse1.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/Z1BthFgm.gz b/CS_Todo/obj/Debug/net6.0/build-gz/Z1BthFgm.gz new file mode 100644 index 00000000..73ac4682 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/Z1BthFgm.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/Z3OzKbMB.gz b/CS_Todo/obj/Debug/net6.0/build-gz/Z3OzKbMB.gz new file mode 100644 index 00000000..222ce60e Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/Z3OzKbMB.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/Z5DZehAu.gz b/CS_Todo/obj/Debug/net6.0/build-gz/Z5DZehAu.gz new file mode 100644 index 00000000..5dafb683 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/Z5DZehAu.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/ZNKwyHY+.gz b/CS_Todo/obj/Debug/net6.0/build-gz/ZNKwyHY+.gz new file mode 100644 index 00000000..733ecd61 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/ZNKwyHY+.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/ZlkXkYAk.gz b/CS_Todo/obj/Debug/net6.0/build-gz/ZlkXkYAk.gz new file mode 100644 index 00000000..c5e373e5 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/ZlkXkYAk.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/ZyKi4OGE.gz b/CS_Todo/obj/Debug/net6.0/build-gz/ZyKi4OGE.gz new file mode 100644 index 00000000..bdca46c8 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/ZyKi4OGE.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/aBQz+dWu.gz b/CS_Todo/obj/Debug/net6.0/build-gz/aBQz+dWu.gz new file mode 100644 index 00000000..2bb81363 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/aBQz+dWu.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/aOY0XOpn.gz b/CS_Todo/obj/Debug/net6.0/build-gz/aOY0XOpn.gz new file mode 100644 index 00000000..579153f1 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/aOY0XOpn.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/anvFXlrU.gz b/CS_Todo/obj/Debug/net6.0/build-gz/anvFXlrU.gz new file mode 100644 index 00000000..b76d9bc9 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/anvFXlrU.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/aoHC2mWj.gz b/CS_Todo/obj/Debug/net6.0/build-gz/aoHC2mWj.gz new file mode 100644 index 00000000..147b8e5d Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/aoHC2mWj.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/axkDzPDg.gz b/CS_Todo/obj/Debug/net6.0/build-gz/axkDzPDg.gz new file mode 100644 index 00000000..847b6b9d Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/axkDzPDg.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/b2BTVfAd.gz b/CS_Todo/obj/Debug/net6.0/build-gz/b2BTVfAd.gz new file mode 100644 index 00000000..9e5c79e6 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/b2BTVfAd.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/b3G7OKjk.gz b/CS_Todo/obj/Debug/net6.0/build-gz/b3G7OKjk.gz new file mode 100644 index 00000000..880df81f Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/b3G7OKjk.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/b403oJt4.gz b/CS_Todo/obj/Debug/net6.0/build-gz/b403oJt4.gz new file mode 100644 index 00000000..e58e9c2d Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/b403oJt4.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/bHQQUCCg.gz b/CS_Todo/obj/Debug/net6.0/build-gz/bHQQUCCg.gz new file mode 100644 index 00000000..a0c1937c Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/bHQQUCCg.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/cAPx3JXU.gz b/CS_Todo/obj/Debug/net6.0/build-gz/cAPx3JXU.gz new file mode 100644 index 00000000..26f907f6 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/cAPx3JXU.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/cOMzoOae.gz b/CS_Todo/obj/Debug/net6.0/build-gz/cOMzoOae.gz new file mode 100644 index 00000000..f7923e89 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/cOMzoOae.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/cPwvfED+.gz b/CS_Todo/obj/Debug/net6.0/build-gz/cPwvfED+.gz new file mode 100644 index 00000000..33aa9d52 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/cPwvfED+.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/cbo3yjvW.gz b/CS_Todo/obj/Debug/net6.0/build-gz/cbo3yjvW.gz new file mode 100644 index 00000000..7657201a Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/cbo3yjvW.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/ceifEB1w.gz b/CS_Todo/obj/Debug/net6.0/build-gz/ceifEB1w.gz new file mode 100644 index 00000000..972b264b Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/ceifEB1w.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/cjbatWbD.gz b/CS_Todo/obj/Debug/net6.0/build-gz/cjbatWbD.gz new file mode 100644 index 00000000..2b5db2a5 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/cjbatWbD.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/cz8LMxh1.gz b/CS_Todo/obj/Debug/net6.0/build-gz/cz8LMxh1.gz new file mode 100644 index 00000000..0da58390 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/cz8LMxh1.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/d+cUeHq3.gz b/CS_Todo/obj/Debug/net6.0/build-gz/d+cUeHq3.gz new file mode 100644 index 00000000..46104544 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/d+cUeHq3.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/d65FhNAD.gz b/CS_Todo/obj/Debug/net6.0/build-gz/d65FhNAD.gz new file mode 100644 index 00000000..77a4aade Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/d65FhNAD.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/dwbJ+N1C.gz b/CS_Todo/obj/Debug/net6.0/build-gz/dwbJ+N1C.gz new file mode 100644 index 00000000..2cf1d498 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/dwbJ+N1C.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/f620GeOq.gz b/CS_Todo/obj/Debug/net6.0/build-gz/f620GeOq.gz new file mode 100644 index 00000000..1dcc1b3e Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/f620GeOq.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/h+UT+DO+.gz b/CS_Todo/obj/Debug/net6.0/build-gz/h+UT+DO+.gz new file mode 100644 index 00000000..57f0517a Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/h+UT+DO+.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/h0IwZ7iM.gz b/CS_Todo/obj/Debug/net6.0/build-gz/h0IwZ7iM.gz new file mode 100644 index 00000000..4bda5dda Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/h0IwZ7iM.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/hCWocqmQ.gz b/CS_Todo/obj/Debug/net6.0/build-gz/hCWocqmQ.gz new file mode 100644 index 00000000..bd9420d3 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/hCWocqmQ.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/iO4E0LGE.gz b/CS_Todo/obj/Debug/net6.0/build-gz/iO4E0LGE.gz new file mode 100644 index 00000000..7543e5e7 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/iO4E0LGE.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/intOU6Ee.gz b/CS_Todo/obj/Debug/net6.0/build-gz/intOU6Ee.gz new file mode 100644 index 00000000..fe929210 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/intOU6Ee.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/j++BdFv1.gz b/CS_Todo/obj/Debug/net6.0/build-gz/j++BdFv1.gz new file mode 100644 index 00000000..3d7e29ea Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/j++BdFv1.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/j5IDt85f.gz b/CS_Todo/obj/Debug/net6.0/build-gz/j5IDt85f.gz new file mode 100644 index 00000000..f7b1c643 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/j5IDt85f.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/j65auveW.gz b/CS_Todo/obj/Debug/net6.0/build-gz/j65auveW.gz new file mode 100644 index 00000000..f1bdcf0b Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/j65auveW.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/jBCgESp2.gz b/CS_Todo/obj/Debug/net6.0/build-gz/jBCgESp2.gz new file mode 100644 index 00000000..5e22b114 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/jBCgESp2.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/jHF9V+Ta.gz b/CS_Todo/obj/Debug/net6.0/build-gz/jHF9V+Ta.gz new file mode 100644 index 00000000..f2a0e7ff Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/jHF9V+Ta.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/jryhAakP.gz b/CS_Todo/obj/Debug/net6.0/build-gz/jryhAakP.gz new file mode 100644 index 00000000..cb4a716b Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/jryhAakP.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/kjMKg2YM.gz b/CS_Todo/obj/Debug/net6.0/build-gz/kjMKg2YM.gz new file mode 100644 index 00000000..33d6c66d Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/kjMKg2YM.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/kycIWHwy.gz b/CS_Todo/obj/Debug/net6.0/build-gz/kycIWHwy.gz new file mode 100644 index 00000000..d0fe0251 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/kycIWHwy.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/l6xNnSyK.gz b/CS_Todo/obj/Debug/net6.0/build-gz/l6xNnSyK.gz new file mode 100644 index 00000000..66d40a4d Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/l6xNnSyK.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/lVbFtWoN.gz b/CS_Todo/obj/Debug/net6.0/build-gz/lVbFtWoN.gz new file mode 100644 index 00000000..a4b5a11c Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/lVbFtWoN.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/lgksuMXI.gz b/CS_Todo/obj/Debug/net6.0/build-gz/lgksuMXI.gz new file mode 100644 index 00000000..d61f1524 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/lgksuMXI.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/mKCm41GD.gz b/CS_Todo/obj/Debug/net6.0/build-gz/mKCm41GD.gz new file mode 100644 index 00000000..6ecae334 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/mKCm41GD.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/mmYoYixw.gz b/CS_Todo/obj/Debug/net6.0/build-gz/mmYoYixw.gz new file mode 100644 index 00000000..b5f87b49 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/mmYoYixw.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/mtIVAx49.gz b/CS_Todo/obj/Debug/net6.0/build-gz/mtIVAx49.gz new file mode 100644 index 00000000..970c6315 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/mtIVAx49.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/n00ukSNx.gz b/CS_Todo/obj/Debug/net6.0/build-gz/n00ukSNx.gz new file mode 100644 index 00000000..10dfc50c Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/n00ukSNx.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/n88QEGkw.gz b/CS_Todo/obj/Debug/net6.0/build-gz/n88QEGkw.gz new file mode 100644 index 00000000..61de2042 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/n88QEGkw.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/nHabIDkI.gz b/CS_Todo/obj/Debug/net6.0/build-gz/nHabIDkI.gz new file mode 100644 index 00000000..55343208 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/nHabIDkI.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/nOj3qEby.gz b/CS_Todo/obj/Debug/net6.0/build-gz/nOj3qEby.gz new file mode 100644 index 00000000..fa19e569 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/nOj3qEby.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/nOlRkj37.gz b/CS_Todo/obj/Debug/net6.0/build-gz/nOlRkj37.gz new file mode 100644 index 00000000..54f8ea8b Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/nOlRkj37.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/noNMMJ3G.gz b/CS_Todo/obj/Debug/net6.0/build-gz/noNMMJ3G.gz new file mode 100644 index 00000000..512b19b1 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/noNMMJ3G.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/ob2sk5HN.gz b/CS_Todo/obj/Debug/net6.0/build-gz/ob2sk5HN.gz new file mode 100644 index 00000000..154ad7a4 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/ob2sk5HN.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/of87xl4N.gz b/CS_Todo/obj/Debug/net6.0/build-gz/of87xl4N.gz new file mode 100644 index 00000000..9ca80932 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/of87xl4N.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/pBYW4Ue+.gz b/CS_Todo/obj/Debug/net6.0/build-gz/pBYW4Ue+.gz new file mode 100644 index 00000000..9b92033e Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/pBYW4Ue+.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/pCOvjnOr.gz b/CS_Todo/obj/Debug/net6.0/build-gz/pCOvjnOr.gz new file mode 100644 index 00000000..22e15d54 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/pCOvjnOr.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/pnCUkTx+.gz b/CS_Todo/obj/Debug/net6.0/build-gz/pnCUkTx+.gz new file mode 100644 index 00000000..323b2ff6 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/pnCUkTx+.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/pzoY8bT8.gz b/CS_Todo/obj/Debug/net6.0/build-gz/pzoY8bT8.gz new file mode 100644 index 00000000..c3ec1eb8 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/pzoY8bT8.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/qYP+lIjq.gz b/CS_Todo/obj/Debug/net6.0/build-gz/qYP+lIjq.gz new file mode 100644 index 00000000..d60e62ce Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/qYP+lIjq.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/qkJbfahn.gz b/CS_Todo/obj/Debug/net6.0/build-gz/qkJbfahn.gz new file mode 100644 index 00000000..7e8934be Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/qkJbfahn.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/quOPeWPN.gz b/CS_Todo/obj/Debug/net6.0/build-gz/quOPeWPN.gz new file mode 100644 index 00000000..52907c33 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/quOPeWPN.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/s81a9R4o.gz b/CS_Todo/obj/Debug/net6.0/build-gz/s81a9R4o.gz new file mode 100644 index 00000000..51346ba1 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/s81a9R4o.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/sEa7XXf0.gz b/CS_Todo/obj/Debug/net6.0/build-gz/sEa7XXf0.gz new file mode 100644 index 00000000..1c9e48e4 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/sEa7XXf0.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/tGEW6puy.gz b/CS_Todo/obj/Debug/net6.0/build-gz/tGEW6puy.gz new file mode 100644 index 00000000..c0ac1000 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/tGEW6puy.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/tKvYdTQx.gz b/CS_Todo/obj/Debug/net6.0/build-gz/tKvYdTQx.gz new file mode 100644 index 00000000..ed09d802 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/tKvYdTQx.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/tjua794V.gz b/CS_Todo/obj/Debug/net6.0/build-gz/tjua794V.gz new file mode 100644 index 00000000..67f9870e Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/tjua794V.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/uCZHf1y+.gz b/CS_Todo/obj/Debug/net6.0/build-gz/uCZHf1y+.gz new file mode 100644 index 00000000..657900ce Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/uCZHf1y+.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/ueQWGjdD.gz b/CS_Todo/obj/Debug/net6.0/build-gz/ueQWGjdD.gz new file mode 100644 index 00000000..da8a0485 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/ueQWGjdD.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/v0FnAjj8.gz b/CS_Todo/obj/Debug/net6.0/build-gz/v0FnAjj8.gz new file mode 100644 index 00000000..098fea16 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/v0FnAjj8.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/vFpanVH5.gz b/CS_Todo/obj/Debug/net6.0/build-gz/vFpanVH5.gz new file mode 100644 index 00000000..7b9d9756 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/vFpanVH5.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/vFrglExZ.gz b/CS_Todo/obj/Debug/net6.0/build-gz/vFrglExZ.gz new file mode 100644 index 00000000..896f78ce Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/vFrglExZ.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/vaxoCzlT.gz b/CS_Todo/obj/Debug/net6.0/build-gz/vaxoCzlT.gz new file mode 100644 index 00000000..a34aeee0 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/vaxoCzlT.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/vjE2loZs.gz b/CS_Todo/obj/Debug/net6.0/build-gz/vjE2loZs.gz new file mode 100644 index 00000000..06aacb1a Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/vjE2loZs.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/vk+ovbKo.gz b/CS_Todo/obj/Debug/net6.0/build-gz/vk+ovbKo.gz new file mode 100644 index 00000000..b7234d17 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/vk+ovbKo.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/vnbfyRHw.gz b/CS_Todo/obj/Debug/net6.0/build-gz/vnbfyRHw.gz new file mode 100644 index 00000000..151689e1 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/vnbfyRHw.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/w+a9Z7nc.gz b/CS_Todo/obj/Debug/net6.0/build-gz/w+a9Z7nc.gz new file mode 100644 index 00000000..4d1a45e6 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/w+a9Z7nc.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/w431ewEn.gz b/CS_Todo/obj/Debug/net6.0/build-gz/w431ewEn.gz new file mode 100644 index 00000000..2d26d530 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/w431ewEn.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/w6ge0Ss3.gz b/CS_Todo/obj/Debug/net6.0/build-gz/w6ge0Ss3.gz new file mode 100644 index 00000000..9e7d2193 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/w6ge0Ss3.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/wGx4Jo6k.gz b/CS_Todo/obj/Debug/net6.0/build-gz/wGx4Jo6k.gz new file mode 100644 index 00000000..95be353c Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/wGx4Jo6k.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/wrRolEjk.gz b/CS_Todo/obj/Debug/net6.0/build-gz/wrRolEjk.gz new file mode 100644 index 00000000..433c1484 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/wrRolEjk.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/xRo0Gl9i.gz b/CS_Todo/obj/Debug/net6.0/build-gz/xRo0Gl9i.gz new file mode 100644 index 00000000..1a996d70 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/xRo0Gl9i.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/xmiwABxn.gz b/CS_Todo/obj/Debug/net6.0/build-gz/xmiwABxn.gz new file mode 100644 index 00000000..8a8d8a2d Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/xmiwABxn.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/xyLuRHNu.gz b/CS_Todo/obj/Debug/net6.0/build-gz/xyLuRHNu.gz new file mode 100644 index 00000000..9b7b7fa5 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/xyLuRHNu.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/y6glL3Qd.gz b/CS_Todo/obj/Debug/net6.0/build-gz/y6glL3Qd.gz new file mode 100644 index 00000000..a1940a2a Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/y6glL3Qd.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/y8lYbkJi.gz b/CS_Todo/obj/Debug/net6.0/build-gz/y8lYbkJi.gz new file mode 100644 index 00000000..6900906a Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/y8lYbkJi.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/yQuw3LXW.gz b/CS_Todo/obj/Debug/net6.0/build-gz/yQuw3LXW.gz new file mode 100644 index 00000000..e2174915 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/yQuw3LXW.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/yVKdSxvd.gz b/CS_Todo/obj/Debug/net6.0/build-gz/yVKdSxvd.gz new file mode 100644 index 00000000..0649514c Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/yVKdSxvd.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/build-gz/zJ20I4Av.gz b/CS_Todo/obj/Debug/net6.0/build-gz/zJ20I4Av.gz new file mode 100644 index 00000000..ebb907d1 Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/build-gz/zJ20I4Av.gz differ diff --git a/CS_Todo/obj/Debug/net6.0/project.razor.json b/CS_Todo/obj/Debug/net6.0/project.razor.json new file mode 100644 index 00000000..46e5b3c9 --- /dev/null +++ b/CS_Todo/obj/Debug/net6.0/project.razor.json @@ -0,0 +1,13721 @@ +{ + "FilePath": "/Users/normrasmussen/Documents/Northpass/CS_Todo/CS_Todo.csproj", + "Configuration": { + "ConfigurationName": "Default", + "LanguageVersion": "6.0", + "Extensions": [] + }, + "ProjectWorkspaceState": { + "TagHelpers": [ + { + "HashCode": 1953684524, + "Kind": "Components.Component", + "Name": "CS_Todo.App", + "AssemblyName": "CS_Todo", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "App" + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "CS_Todo.App" + } + }, + { + "HashCode": -1580899062, + "Kind": "Components.Component", + "Name": "CS_Todo.App", + "AssemblyName": "CS_Todo", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "CS_Todo.App" + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "CS_Todo.App", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 1433124810, + "Kind": "Components.Component", + "Name": "CS_Todo.Pages.Counter", + "AssemblyName": "CS_Todo", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Counter" + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "CS_Todo.Pages.Counter" + } + }, + { + "HashCode": 837673771, + "Kind": "Components.Component", + "Name": "CS_Todo.Pages.Counter", + "AssemblyName": "CS_Todo", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "CS_Todo.Pages.Counter" + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "CS_Todo.Pages.Counter", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 1134109687, + "Kind": "Components.Component", + "Name": "CS_Todo.Pages.FetchData", + "AssemblyName": "CS_Todo", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "FetchData" + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "CS_Todo.Pages.FetchData" + } + }, + { + "HashCode": 1635481835, + "Kind": "Components.Component", + "Name": "CS_Todo.Pages.FetchData", + "AssemblyName": "CS_Todo", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "CS_Todo.Pages.FetchData" + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "CS_Todo.Pages.FetchData", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -106687710, + "Kind": "Components.Component", + "Name": "CS_Todo.Pages.Index", + "AssemblyName": "CS_Todo", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Index" + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "CS_Todo.Pages.Index" + } + }, + { + "HashCode": -231791630, + "Kind": "Components.Component", + "Name": "CS_Todo.Pages.Index", + "AssemblyName": "CS_Todo", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "CS_Todo.Pages.Index" + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "CS_Todo.Pages.Index", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -894332439, + "Kind": "Components.Component", + "Name": "CS_Todo.Pages.TodoList", + "AssemblyName": "CS_Todo", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "TodoList" + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "CS_Todo.Pages.TodoList" + } + }, + { + "HashCode": -1237001897, + "Kind": "Components.Component", + "Name": "CS_Todo.Pages.TodoList", + "AssemblyName": "CS_Todo", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "CS_Todo.Pages.TodoList" + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "CS_Todo.Pages.TodoList", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -1617383092, + "Kind": "Components.Component", + "Name": "CS_Todo.Shared.SurveyPrompt", + "AssemblyName": "CS_Todo", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "SurveyPrompt" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "Title", + "TypeName": "System.String", + "Metadata": { + "Common.PropertyName": "Title" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "CS_Todo.Shared.SurveyPrompt" + } + }, + { + "HashCode": -1235410819, + "Kind": "Components.Component", + "Name": "CS_Todo.Shared.SurveyPrompt", + "AssemblyName": "CS_Todo", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "CS_Todo.Shared.SurveyPrompt" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "Title", + "TypeName": "System.String", + "Metadata": { + "Common.PropertyName": "Title" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "CS_Todo.Shared.SurveyPrompt", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 131077499, + "Kind": "Components.Component", + "Name": "CS_Todo.Shared.NavMenu", + "AssemblyName": "CS_Todo", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "NavMenu" + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "CS_Todo.Shared.NavMenu" + } + }, + { + "HashCode": -472760711, + "Kind": "Components.Component", + "Name": "CS_Todo.Shared.NavMenu", + "AssemblyName": "CS_Todo", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "CS_Todo.Shared.NavMenu" + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "CS_Todo.Shared.NavMenu", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -1203799838, + "Kind": "Components.Component", + "Name": "CS_Todo.Shared.MainLayout", + "AssemblyName": "CS_Todo", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "MainLayout" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "Body", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets the content to be rendered inside the layout.\n \n ", + "Metadata": { + "Common.PropertyName": "Body", + "Components.ChildContent": "True" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "CS_Todo.Shared.MainLayout" + } + }, + { + "HashCode": 819004113, + "Kind": "Components.Component", + "Name": "CS_Todo.Shared.MainLayout", + "AssemblyName": "CS_Todo", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "CS_Todo.Shared.MainLayout" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "Body", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets the content to be rendered inside the layout.\n \n ", + "Metadata": { + "Common.PropertyName": "Body", + "Components.ChildContent": "True" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "CS_Todo.Shared.MainLayout", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -234653318, + "Kind": "Components.ChildContent", + "Name": "CS_Todo.Shared.MainLayout.Body", + "AssemblyName": "CS_Todo", + "Documentation": "\n \n Gets the content to be rendered inside the layout.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Body", + "ParentTag": "MainLayout" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "CS_Todo.Shared.MainLayout.Body", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": 1391627788, + "Kind": "Components.ChildContent", + "Name": "CS_Todo.Shared.MainLayout.Body", + "AssemblyName": "CS_Todo", + "Documentation": "\n \n Gets the content to be rendered inside the layout.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Body", + "ParentTag": "CS_Todo.Shared.MainLayout" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "CS_Todo.Shared.MainLayout.Body", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 1228981156, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.CascadingValue", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n A component that provides a cascading value to all descendant components.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "CascadingValue" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TValue", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.CascadingValue component.", + "Metadata": { + "Common.PropertyName": "TValue", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n The content to which the value should be provided.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "TValue", + "Documentation": "\n \n The value to be provided.\n \n ", + "Metadata": { + "Common.PropertyName": "Value", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Name", + "TypeName": "System.String", + "Documentation": "\n \n Optionally gives a name to the provided value. Descendant components\n will be able to receive the value by specifying this name.\n \n If no name is specified, then descendant components will receive the\n value based the type of value they are requesting.\n \n ", + "Metadata": { + "Common.PropertyName": "Name" + } + }, + { + "Kind": "Components.Component", + "Name": "IsFixed", + "TypeName": "System.Boolean", + "Documentation": "\n \n If true, indicates that will not change. This is a\n performance optimization that allows the framework to skip setting up\n change notifications. Set this flag only if you will not change\n during the component's lifetime.\n \n ", + "Metadata": { + "Common.PropertyName": "IsFixed" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.CascadingValue", + "Components.GenericTyped": "True" + } + }, + { + "HashCode": -1117438128, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.CascadingValue", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n A component that provides a cascading value to all descendant components.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.CascadingValue" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TValue", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.CascadingValue component.", + "Metadata": { + "Common.PropertyName": "TValue", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n The content to which the value should be provided.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "TValue", + "Documentation": "\n \n The value to be provided.\n \n ", + "Metadata": { + "Common.PropertyName": "Value", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Name", + "TypeName": "System.String", + "Documentation": "\n \n Optionally gives a name to the provided value. Descendant components\n will be able to receive the value by specifying this name.\n \n If no name is specified, then descendant components will receive the\n value based the type of value they are requesting.\n \n ", + "Metadata": { + "Common.PropertyName": "Name" + } + }, + { + "Kind": "Components.Component", + "Name": "IsFixed", + "TypeName": "System.Boolean", + "Documentation": "\n \n If true, indicates that will not change. This is a\n performance optimization that allows the framework to skip setting up\n change notifications. Set this flag only if you will not change\n during the component's lifetime.\n \n ", + "Metadata": { + "Common.PropertyName": "IsFixed" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.CascadingValue", + "Components.GenericTyped": "True", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 77702053, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n The content to which the value should be provided.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "CascadingValue" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": -775770843, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n The content to which the value should be provided.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "Microsoft.AspNetCore.Components.CascadingValue" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -405342908, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.DynamicComponent", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n A component that renders another component dynamically according to its\n parameter.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "DynamicComponent" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "Type", + "TypeName": "System.Type", + "IsEditorRequired": true, + "Documentation": "\n \n Gets or sets the type of the component to be rendered. The supplied type must\n implement .\n \n ", + "Metadata": { + "Common.PropertyName": "Type" + } + }, + { + "Kind": "Components.Component", + "Name": "Parameters", + "TypeName": "System.Collections.Generic.IDictionary", + "Documentation": "\n \n Gets or sets a dictionary of parameters to be passed to the component.\n \n ", + "Metadata": { + "Common.PropertyName": "Parameters" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.DynamicComponent" + } + }, + { + "HashCode": 1951646778, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.DynamicComponent", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n A component that renders another component dynamically according to its\n parameter.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.DynamicComponent" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "Type", + "TypeName": "System.Type", + "IsEditorRequired": true, + "Documentation": "\n \n Gets or sets the type of the component to be rendered. The supplied type must\n implement .\n \n ", + "Metadata": { + "Common.PropertyName": "Type" + } + }, + { + "Kind": "Components.Component", + "Name": "Parameters", + "TypeName": "System.Collections.Generic.IDictionary", + "Documentation": "\n \n Gets or sets a dictionary of parameters to be passed to the component.\n \n ", + "Metadata": { + "Common.PropertyName": "Parameters" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.DynamicComponent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 1722627466, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.LayoutView", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n Displays the specified content inside the specified layout and any further\n nested layouts.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "LayoutView" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the content to display.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Layout", + "TypeName": "System.Type", + "Documentation": "\n \n Gets or sets the type of the layout in which to display the content.\n The type must implement and accept a parameter named .\n \n ", + "Metadata": { + "Common.PropertyName": "Layout" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.LayoutView" + } + }, + { + "HashCode": 1871162314, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.LayoutView", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n Displays the specified content inside the specified layout and any further\n nested layouts.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.LayoutView" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the content to display.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Layout", + "TypeName": "System.Type", + "Documentation": "\n \n Gets or sets the type of the layout in which to display the content.\n The type must implement and accept a parameter named .\n \n ", + "Metadata": { + "Common.PropertyName": "Layout" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.LayoutView", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 1527475742, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.LayoutView.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n Gets or sets the content to display.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "LayoutView" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.LayoutView.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": -583074896, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.LayoutView.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n Gets or sets the content to display.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "Microsoft.AspNetCore.Components.LayoutView" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.LayoutView.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -1132807038, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.RouteView", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n Displays the specified page component, rendering it inside its layout\n and any further nested layouts.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "RouteView" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "RouteData", + "TypeName": "Microsoft.AspNetCore.Components.RouteData", + "IsEditorRequired": true, + "Documentation": "\n \n Gets or sets the route data. This determines the page that will be\n displayed and the parameter values that will be supplied to the page.\n \n ", + "Metadata": { + "Common.PropertyName": "RouteData" + } + }, + { + "Kind": "Components.Component", + "Name": "DefaultLayout", + "TypeName": "System.Type", + "Documentation": "\n \n Gets or sets the type of a layout to be used if the page does not\n declare any layout. If specified, the type must implement \n and accept a parameter named .\n \n ", + "Metadata": { + "Common.PropertyName": "DefaultLayout" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.RouteView" + } + }, + { + "HashCode": 1549771930, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.RouteView", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n Displays the specified page component, rendering it inside its layout\n and any further nested layouts.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.RouteView" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "RouteData", + "TypeName": "Microsoft.AspNetCore.Components.RouteData", + "IsEditorRequired": true, + "Documentation": "\n \n Gets or sets the route data. This determines the page that will be\n displayed and the parameter values that will be supplied to the page.\n \n ", + "Metadata": { + "Common.PropertyName": "RouteData" + } + }, + { + "Kind": "Components.Component", + "Name": "DefaultLayout", + "TypeName": "System.Type", + "Documentation": "\n \n Gets or sets the type of a layout to be used if the page does not\n declare any layout. If specified, the type must implement \n and accept a parameter named .\n \n ", + "Metadata": { + "Common.PropertyName": "DefaultLayout" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.RouteView", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -1940317127, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Routing.Router", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n A component that supplies route data corresponding to the current navigation state.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Router" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "AppAssembly", + "TypeName": "System.Reflection.Assembly", + "IsEditorRequired": true, + "Documentation": "\n \n Gets or sets the assembly that should be searched for components matching the URI.\n \n ", + "Metadata": { + "Common.PropertyName": "AppAssembly" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAssemblies", + "TypeName": "System.Collections.Generic.IEnumerable", + "Documentation": "\n \n Gets or sets a collection of additional assemblies that should be searched for components\n that can match URIs.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAssemblies" + } + }, + { + "Kind": "Components.Component", + "Name": "NotFound", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "IsEditorRequired": true, + "Documentation": "\n \n Gets or sets the content to display when no match is found for the requested route.\n \n ", + "Metadata": { + "Common.PropertyName": "NotFound", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Found", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "IsEditorRequired": true, + "Documentation": "\n \n Gets or sets the content to display when a match is found for the requested route.\n \n ", + "Metadata": { + "Common.PropertyName": "Found", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Navigating", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Get or sets the content to display when asynchronous navigation is in progress.\n \n ", + "Metadata": { + "Common.PropertyName": "Navigating", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "OnNavigateAsync", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a handler that should be called before navigating to a new page.\n \n ", + "Metadata": { + "Common.PropertyName": "OnNavigateAsync", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "PreferExactMatches", + "TypeName": "System.Boolean", + "Documentation": "\n \n Gets or sets a flag to indicate whether route matching should prefer exact matches\n over wildcards.\n This property is obsolete and configuring it does nothing.\n \n ", + "Metadata": { + "Common.PropertyName": "PreferExactMatches" + } + }, + { + "Kind": "Components.Component", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for all child content expressions.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router" + } + }, + { + "HashCode": -1269803106, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Routing.Router", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n A component that supplies route data corresponding to the current navigation state.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Routing.Router" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "AppAssembly", + "TypeName": "System.Reflection.Assembly", + "IsEditorRequired": true, + "Documentation": "\n \n Gets or sets the assembly that should be searched for components matching the URI.\n \n ", + "Metadata": { + "Common.PropertyName": "AppAssembly" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAssemblies", + "TypeName": "System.Collections.Generic.IEnumerable", + "Documentation": "\n \n Gets or sets a collection of additional assemblies that should be searched for components\n that can match URIs.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAssemblies" + } + }, + { + "Kind": "Components.Component", + "Name": "NotFound", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "IsEditorRequired": true, + "Documentation": "\n \n Gets or sets the content to display when no match is found for the requested route.\n \n ", + "Metadata": { + "Common.PropertyName": "NotFound", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Found", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "IsEditorRequired": true, + "Documentation": "\n \n Gets or sets the content to display when a match is found for the requested route.\n \n ", + "Metadata": { + "Common.PropertyName": "Found", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Navigating", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Get or sets the content to display when asynchronous navigation is in progress.\n \n ", + "Metadata": { + "Common.PropertyName": "Navigating", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "OnNavigateAsync", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a handler that should be called before navigating to a new page.\n \n ", + "Metadata": { + "Common.PropertyName": "OnNavigateAsync", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "PreferExactMatches", + "TypeName": "System.Boolean", + "Documentation": "\n \n Gets or sets a flag to indicate whether route matching should prefer exact matches\n over wildcards.\n This property is obsolete and configuring it does nothing.\n \n ", + "Metadata": { + "Common.PropertyName": "PreferExactMatches" + } + }, + { + "Kind": "Components.Component", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for all child content expressions.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 1931286711, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Routing.Router.NotFound", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n Gets or sets the content to display when no match is found for the requested route.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "NotFound", + "ParentTag": "Router" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.NotFound", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": 1306021165, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Routing.Router.NotFound", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n Gets or sets the content to display when no match is found for the requested route.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "NotFound", + "ParentTag": "Microsoft.AspNetCore.Components.Routing.Router" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.NotFound", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -29709743, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Routing.Router.Found", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n Gets or sets the content to display when a match is found for the requested route.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Found", + "ParentTag": "Router" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'Found' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.Found", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": -814411932, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Routing.Router.Found", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n Gets or sets the content to display when a match is found for the requested route.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Found", + "ParentTag": "Microsoft.AspNetCore.Components.Routing.Router" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'Found' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.Found", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 90515195, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Routing.Router.Navigating", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n Get or sets the content to display when asynchronous navigation is in progress.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Navigating", + "ParentTag": "Router" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.Navigating", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": 959610388, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Routing.Router.Navigating", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "\n \n Get or sets the content to display when asynchronous navigation is in progress.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Navigating", + "ParentTag": "Microsoft.AspNetCore.Components.Routing.Router" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.Navigating", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 1569700981, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator", + "AssemblyName": "Microsoft.AspNetCore.Components.Forms", + "Documentation": "\n \n Adds Data Annotations validation support to an .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "DataAnnotationsValidator" + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator" + } + }, + { + "HashCode": -2006381127, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator", + "AssemblyName": "Microsoft.AspNetCore.Components.Forms", + "Documentation": "\n \n Adds Data Annotations validation support to an .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator" + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 1902707132, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.EditForm", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Renders a form element that cascades an to descendants.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "EditForm" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created form element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "EditContext", + "TypeName": "Microsoft.AspNetCore.Components.Forms.EditContext", + "Documentation": "\n \n Supplies the edit context explicitly. If using this parameter, do not\n also supply , since the model value will be taken\n from the property.\n \n ", + "Metadata": { + "Common.PropertyName": "EditContext" + } + }, + { + "Kind": "Components.Component", + "Name": "Model", + "TypeName": "System.Object", + "Documentation": "\n \n Specifies the top-level model object for the form. An edit context will\n be constructed for this model. If using this parameter, do not also supply\n a value for .\n \n ", + "Metadata": { + "Common.PropertyName": "Model" + } + }, + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Specifies the content to be rendered inside this .\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "OnSubmit", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n A callback that will be invoked when the form is submitted.\n \n If using this parameter, you are responsible for triggering any validation\n manually, e.g., by calling .\n \n ", + "Metadata": { + "Common.PropertyName": "OnSubmit", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "OnValidSubmit", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n A callback that will be invoked when the form is submitted and the\n is determined to be valid.\n \n ", + "Metadata": { + "Common.PropertyName": "OnValidSubmit", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "OnInvalidSubmit", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n A callback that will be invoked when the form is submitted and the\n is determined to be invalid.\n \n ", + "Metadata": { + "Common.PropertyName": "OnInvalidSubmit", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for all child content expressions.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.EditForm" + } + }, + { + "HashCode": -627081138, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.EditForm", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Renders a form element that cascades an to descendants.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.EditForm" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created form element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "EditContext", + "TypeName": "Microsoft.AspNetCore.Components.Forms.EditContext", + "Documentation": "\n \n Supplies the edit context explicitly. If using this parameter, do not\n also supply , since the model value will be taken\n from the property.\n \n ", + "Metadata": { + "Common.PropertyName": "EditContext" + } + }, + { + "Kind": "Components.Component", + "Name": "Model", + "TypeName": "System.Object", + "Documentation": "\n \n Specifies the top-level model object for the form. An edit context will\n be constructed for this model. If using this parameter, do not also supply\n a value for .\n \n ", + "Metadata": { + "Common.PropertyName": "Model" + } + }, + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Specifies the content to be rendered inside this .\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "OnSubmit", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n A callback that will be invoked when the form is submitted.\n \n If using this parameter, you are responsible for triggering any validation\n manually, e.g., by calling .\n \n ", + "Metadata": { + "Common.PropertyName": "OnSubmit", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "OnValidSubmit", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n A callback that will be invoked when the form is submitted and the\n is determined to be valid.\n \n ", + "Metadata": { + "Common.PropertyName": "OnValidSubmit", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "OnInvalidSubmit", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n A callback that will be invoked when the form is submitted and the\n is determined to be invalid.\n \n ", + "Metadata": { + "Common.PropertyName": "OnInvalidSubmit", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for all child content expressions.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.EditForm", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 1893960046, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Specifies the content to be rendered inside this .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "EditForm" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": -634966433, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Specifies the content to be rendered inside this .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "Microsoft.AspNetCore.Components.Forms.EditForm" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 431658672, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n An input component for editing values.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputCheckbox" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "System.Boolean", + "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", + "Metadata": { + "Common.PropertyName": "Value" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueChanged", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueChanged", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueExpression", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueExpression" + } + }, + { + "Kind": "Components.Component", + "Name": "DisplayName", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", + "Metadata": { + "Common.PropertyName": "DisplayName" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox" + } + }, + { + "HashCode": -195762280, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n An input component for editing values.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "System.Boolean", + "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", + "Metadata": { + "Common.PropertyName": "Value" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueChanged", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueChanged", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueExpression", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueExpression" + } + }, + { + "Kind": "Components.Component", + "Name": "DisplayName", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", + "Metadata": { + "Common.PropertyName": "DisplayName" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -1846456836, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n An input component for editing date values.\n Supported types are and .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputDate" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TValue", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputDate component.", + "Metadata": { + "Common.PropertyName": "TValue", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "Type", + "TypeName": "Microsoft.AspNetCore.Components.Forms.InputDateType", + "IsEnum": true, + "Documentation": "\n \n Gets or sets the type of HTML input to be rendered.\n \n ", + "Metadata": { + "Common.PropertyName": "Type" + } + }, + { + "Kind": "Components.Component", + "Name": "ParsingErrorMessage", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the error message used when displaying an a parsing error.\n \n ", + "Metadata": { + "Common.PropertyName": "ParsingErrorMessage" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "TValue", + "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", + "Metadata": { + "Common.PropertyName": "Value", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueChanged", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueChanged", + "Components.EventCallback": "True", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueExpression", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueExpression", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "DisplayName", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", + "Metadata": { + "Common.PropertyName": "DisplayName" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputDate", + "Components.GenericTyped": "True" + } + }, + { + "HashCode": -1239138118, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n An input component for editing date values.\n Supported types are and .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputDate" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TValue", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputDate component.", + "Metadata": { + "Common.PropertyName": "TValue", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "Type", + "TypeName": "Microsoft.AspNetCore.Components.Forms.InputDateType", + "IsEnum": true, + "Documentation": "\n \n Gets or sets the type of HTML input to be rendered.\n \n ", + "Metadata": { + "Common.PropertyName": "Type" + } + }, + { + "Kind": "Components.Component", + "Name": "ParsingErrorMessage", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the error message used when displaying an a parsing error.\n \n ", + "Metadata": { + "Common.PropertyName": "ParsingErrorMessage" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "TValue", + "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", + "Metadata": { + "Common.PropertyName": "Value", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueChanged", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueChanged", + "Components.EventCallback": "True", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueExpression", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueExpression", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "DisplayName", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", + "Metadata": { + "Common.PropertyName": "DisplayName" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputDate", + "Components.GenericTyped": "True", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 965382528, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputFile", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n A component that wraps the HTML file input element and supplies a for each file's contents.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputFile" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "OnChange", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets the event callback that will be invoked when the collection of selected files changes.\n \n ", + "Metadata": { + "Common.PropertyName": "OnChange", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the input element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputFile" + } + }, + { + "HashCode": 956832511, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputFile", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n A component that wraps the HTML file input element and supplies a for each file's contents.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputFile" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "OnChange", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets the event callback that will be invoked when the collection of selected files changes.\n \n ", + "Metadata": { + "Common.PropertyName": "OnChange", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the input element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputFile", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -457546755, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n An input component for editing numeric values.\n Supported numeric types are , , , , , .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputNumber" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TValue", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputNumber component.", + "Metadata": { + "Common.PropertyName": "TValue", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "ParsingErrorMessage", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the error message used when displaying an a parsing error.\n \n ", + "Metadata": { + "Common.PropertyName": "ParsingErrorMessage" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "TValue", + "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", + "Metadata": { + "Common.PropertyName": "Value", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueChanged", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueChanged", + "Components.EventCallback": "True", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueExpression", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueExpression", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "DisplayName", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", + "Metadata": { + "Common.PropertyName": "DisplayName" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputNumber", + "Components.GenericTyped": "True" + } + }, + { + "HashCode": -1237830288, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n An input component for editing numeric values.\n Supported numeric types are , , , , , .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputNumber" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TValue", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputNumber component.", + "Metadata": { + "Common.PropertyName": "TValue", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "ParsingErrorMessage", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the error message used when displaying an a parsing error.\n \n ", + "Metadata": { + "Common.PropertyName": "ParsingErrorMessage" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "TValue", + "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", + "Metadata": { + "Common.PropertyName": "Value", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueChanged", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueChanged", + "Components.EventCallback": "True", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueExpression", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueExpression", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "DisplayName", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", + "Metadata": { + "Common.PropertyName": "DisplayName" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputNumber", + "Components.GenericTyped": "True", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -668059609, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputRadio", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n An input component used for selecting a value from a group of choices.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputRadio" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TValue", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputRadio component.", + "Metadata": { + "Common.PropertyName": "TValue", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the input element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "TValue", + "Documentation": "\n \n Gets or sets the value of this input.\n \n ", + "Metadata": { + "Common.PropertyName": "Value", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Name", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the name of the parent input radio group.\n \n ", + "Metadata": { + "Common.PropertyName": "Name" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadio", + "Components.GenericTyped": "True" + } + }, + { + "HashCode": -1507703026, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputRadio", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n An input component used for selecting a value from a group of choices.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputRadio" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TValue", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputRadio component.", + "Metadata": { + "Common.PropertyName": "TValue", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the input element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "TValue", + "Documentation": "\n \n Gets or sets the value of this input.\n \n ", + "Metadata": { + "Common.PropertyName": "Value", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Name", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the name of the parent input radio group.\n \n ", + "Metadata": { + "Common.PropertyName": "Name" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadio", + "Components.GenericTyped": "True", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 918208080, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Groups child components.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputRadioGroup" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TValue", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputRadioGroup component.", + "Metadata": { + "Common.PropertyName": "TValue", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the child content to be rendering inside the .\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Name", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the name of the group.\n \n ", + "Metadata": { + "Common.PropertyName": "Name" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "TValue", + "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", + "Metadata": { + "Common.PropertyName": "Value", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueChanged", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueChanged", + "Components.EventCallback": "True", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueExpression", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueExpression", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "DisplayName", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", + "Metadata": { + "Common.PropertyName": "DisplayName" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", + "Components.GenericTyped": "True" + } + }, + { + "HashCode": -1561328102, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Groups child components.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TValue", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputRadioGroup component.", + "Metadata": { + "Common.PropertyName": "TValue", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the child content to be rendering inside the .\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Name", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the name of the group.\n \n ", + "Metadata": { + "Common.PropertyName": "Name" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "TValue", + "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", + "Metadata": { + "Common.PropertyName": "Value", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueChanged", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueChanged", + "Components.EventCallback": "True", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueExpression", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueExpression", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "DisplayName", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", + "Metadata": { + "Common.PropertyName": "DisplayName" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", + "Components.GenericTyped": "True", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -979453096, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the child content to be rendering inside the .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "InputRadioGroup" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": 1226550927, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the child content to be rendering inside the .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 476807650, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n A dropdown selection component.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputSelect" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TValue", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputSelect component.", + "Metadata": { + "Common.PropertyName": "TValue", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the child content to be rendering inside the select element.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "TValue", + "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", + "Metadata": { + "Common.PropertyName": "Value", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueChanged", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueChanged", + "Components.EventCallback": "True", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueExpression", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueExpression", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "DisplayName", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", + "Metadata": { + "Common.PropertyName": "DisplayName" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect", + "Components.GenericTyped": "True" + } + }, + { + "HashCode": -499386859, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n A dropdown selection component.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputSelect" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TValue", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputSelect component.", + "Metadata": { + "Common.PropertyName": "TValue", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the child content to be rendering inside the select element.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "TValue", + "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", + "Metadata": { + "Common.PropertyName": "Value", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueChanged", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueChanged", + "Components.EventCallback": "True", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueExpression", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueExpression", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "DisplayName", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", + "Metadata": { + "Common.PropertyName": "DisplayName" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect", + "Components.GenericTyped": "True", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 1643071945, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the child content to be rendering inside the select element.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "InputSelect" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": -1615043203, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the child content to be rendering inside the select element.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "Microsoft.AspNetCore.Components.Forms.InputSelect" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -715798318, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputText", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n An input component for editing values.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputText" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", + "Metadata": { + "Common.PropertyName": "Value" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueChanged", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueChanged", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueExpression", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueExpression" + } + }, + { + "Kind": "Components.Component", + "Name": "DisplayName", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", + "Metadata": { + "Common.PropertyName": "DisplayName" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputText" + } + }, + { + "HashCode": -1803621483, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputText", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n An input component for editing values.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputText" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", + "Metadata": { + "Common.PropertyName": "Value" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueChanged", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueChanged", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueExpression", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueExpression" + } + }, + { + "Kind": "Components.Component", + "Name": "DisplayName", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", + "Metadata": { + "Common.PropertyName": "DisplayName" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputText", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -104626376, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n A multiline input component for editing values.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputTextArea" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", + "Metadata": { + "Common.PropertyName": "Value" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueChanged", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueChanged", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueExpression", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueExpression" + } + }, + { + "Kind": "Components.Component", + "Name": "DisplayName", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", + "Metadata": { + "Common.PropertyName": "DisplayName" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputTextArea" + } + }, + { + "HashCode": -1943671852, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n A multiline input component for editing values.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputTextArea" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "Value", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", + "Metadata": { + "Common.PropertyName": "Value" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueChanged", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueChanged", + "Components.EventCallback": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ValueExpression", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", + "Metadata": { + "Common.PropertyName": "ValueExpression" + } + }, + { + "Kind": "Components.Component", + "Name": "DisplayName", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ", + "Metadata": { + "Common.PropertyName": "DisplayName" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputTextArea", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 888744472, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.ValidationMessage", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Displays a list of validation messages for a specified field within a cascaded .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ValidationMessage" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TValue", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.ValidationMessage component.", + "Metadata": { + "Common.PropertyName": "TValue", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created div element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "For", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Specifies the field for which validation messages should be displayed.\n \n ", + "Metadata": { + "Common.PropertyName": "For", + "Components.GenericTyped": "True" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.ValidationMessage", + "Components.GenericTyped": "True" + } + }, + { + "HashCode": 1747773318, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.ValidationMessage", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Displays a list of validation messages for a specified field within a cascaded .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.ValidationMessage" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TValue", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.ValidationMessage component.", + "Metadata": { + "Common.PropertyName": "TValue", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created div element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "For", + "TypeName": "System.Linq.Expressions.Expression>", + "Documentation": "\n \n Specifies the field for which validation messages should be displayed.\n \n ", + "Metadata": { + "Common.PropertyName": "For", + "Components.GenericTyped": "True" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.ValidationMessage", + "Components.GenericTyped": "True", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -1616254155, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.ValidationSummary", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Displays a list of validation messages from a cascaded .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ValidationSummary" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "Model", + "TypeName": "System.Object", + "Documentation": "\n \n Gets or sets the model to produce the list of validation messages for.\n When specified, this lists all errors that are associated with the model instance.\n \n ", + "Metadata": { + "Common.PropertyName": "Model" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created ul element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.ValidationSummary" + } + }, + { + "HashCode": 503004639, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Forms.ValidationSummary", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Displays a list of validation messages from a cascaded .\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.ValidationSummary" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "Model", + "TypeName": "System.Object", + "Documentation": "\n \n Gets or sets the model to produce the list of validation messages for.\n When specified, this lists all errors that are associated with the model instance.\n \n ", + "Metadata": { + "Common.PropertyName": "Model" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created ul element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.ValidationSummary", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 1522541982, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n After navigating from one page to another, sets focus to an element\n matching a CSS selector. This can be used to build an accessible\n navigation system compatible with screen readers.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "FocusOnNavigate" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "RouteData", + "TypeName": "Microsoft.AspNetCore.Components.RouteData", + "Documentation": "\n \n Gets or sets the route data. This can be obtained from an enclosing\n component.\n \n ", + "Metadata": { + "Common.PropertyName": "RouteData" + } + }, + { + "Kind": "Components.Component", + "Name": "Selector", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets a CSS selector describing the element to be focused after\n navigation between pages.\n \n ", + "Metadata": { + "Common.PropertyName": "Selector" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate" + } + }, + { + "HashCode": -1108947303, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n After navigating from one page to another, sets focus to an element\n matching a CSS selector. This can be used to build an accessible\n navigation system compatible with screen readers.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "RouteData", + "TypeName": "Microsoft.AspNetCore.Components.RouteData", + "Documentation": "\n \n Gets or sets the route data. This can be obtained from an enclosing\n component.\n \n ", + "Metadata": { + "Common.PropertyName": "RouteData" + } + }, + { + "Kind": "Components.Component", + "Name": "Selector", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets a CSS selector describing the element to be focused after\n navigation between pages.\n \n ", + "Metadata": { + "Common.PropertyName": "Selector" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 561921273, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Routing.NavLink", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n A component that renders an anchor tag, automatically toggling its 'active'\n class based on whether its 'href' matches the current URI.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "NavLink" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "ActiveClass", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the CSS class name applied to the NavLink when the\n current route matches the NavLink href.\n \n ", + "Metadata": { + "Common.PropertyName": "ActiveClass" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be added to the generated\n a element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the child content of the component.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Match", + "TypeName": "Microsoft.AspNetCore.Components.Routing.NavLinkMatch", + "IsEnum": true, + "Documentation": "\n \n Gets or sets a value representing the URL matching behavior.\n \n ", + "Metadata": { + "Common.PropertyName": "Match" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavLink" + } + }, + { + "HashCode": -649930378, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Routing.NavLink", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n A component that renders an anchor tag, automatically toggling its 'active'\n class based on whether its 'href' matches the current URI.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Routing.NavLink" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "ActiveClass", + "TypeName": "System.String", + "Documentation": "\n \n Gets or sets the CSS class name applied to the NavLink when the\n current route matches the NavLink href.\n \n ", + "Metadata": { + "Common.PropertyName": "ActiveClass" + } + }, + { + "Kind": "Components.Component", + "Name": "AdditionalAttributes", + "TypeName": "System.Collections.Generic.IReadOnlyDictionary", + "Documentation": "\n \n Gets or sets a collection of additional attributes that will be added to the generated\n a element.\n \n ", + "Metadata": { + "Common.PropertyName": "AdditionalAttributes" + } + }, + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the child content of the component.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Match", + "TypeName": "Microsoft.AspNetCore.Components.Routing.NavLinkMatch", + "IsEnum": true, + "Documentation": "\n \n Gets or sets a value representing the URL matching behavior.\n \n ", + "Metadata": { + "Common.PropertyName": "Match" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavLink", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -482789898, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the child content of the component.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "NavLink" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": -1163530963, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the child content of the component.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "Microsoft.AspNetCore.Components.Routing.NavLink" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 542802499, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Web.HeadContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Provides content to components.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "HeadContent" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the content to be rendered in instances.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadContent" + } + }, + { + "HashCode": 1293389326, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Web.HeadContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Provides content to components.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Web.HeadContent" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the content to be rendered in instances.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -809131269, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the content to be rendered in instances.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "HeadContent" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": -1819382613, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the content to be rendered in instances.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "Microsoft.AspNetCore.Components.Web.HeadContent" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -56934236, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Web.HeadOutlet", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Renders content provided by components.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "HeadOutlet" + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadOutlet" + } + }, + { + "HashCode": 1403250172, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Web.HeadOutlet", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Renders content provided by components.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Web.HeadOutlet" + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadOutlet", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 945949686, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Web.PageTitle", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Enables rendering an HTML <title> to a component.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "PageTitle" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the content to be rendered as the document title.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.PageTitle" + } + }, + { + "HashCode": -1370988716, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Web.PageTitle", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Enables rendering an HTML <title> to a component.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Web.PageTitle" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the content to be rendered as the document title.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.PageTitle", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -43183273, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the content to be rendered as the document title.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "PageTitle" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": -920854553, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the content to be rendered as the document title.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "Microsoft.AspNetCore.Components.Web.PageTitle" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -2035735992, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Captures errors thrown from its child content.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ErrorBoundary" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n The content to be displayed when there is no error.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ErrorContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n The content to be displayed when there is an error.\n \n ", + "Metadata": { + "Common.PropertyName": "ErrorContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "MaximumErrorCount", + "TypeName": "System.Int32", + "Documentation": "\n \n The maximum number of errors that can be handled. If more errors are received,\n they will be treated as fatal. Calling resets the count.\n \n ", + "Metadata": { + "Common.PropertyName": "MaximumErrorCount" + } + }, + { + "Kind": "Components.Component", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for all child content expressions.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary" + } + }, + { + "HashCode": 1010451521, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Captures errors thrown from its child content.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n The content to be displayed when there is no error.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ErrorContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n The content to be displayed when there is an error.\n \n ", + "Metadata": { + "Common.PropertyName": "ErrorContent", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "MaximumErrorCount", + "TypeName": "System.Int32", + "Documentation": "\n \n The maximum number of errors that can be handled. If more errors are received,\n they will be treated as fatal. Calling resets the count.\n \n ", + "Metadata": { + "Common.PropertyName": "MaximumErrorCount" + } + }, + { + "Kind": "Components.Component", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for all child content expressions.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 1111794639, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n The content to be displayed when there is no error.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "ErrorBoundary" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": 157888262, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n The content to be displayed when there is no error.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "Microsoft.AspNetCore.Components.Web.ErrorBoundary" + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 460059175, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n The content to be displayed when there is an error.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ErrorContent", + "ParentTag": "ErrorBoundary" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'ErrorContent' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": -1173950924, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n The content to be displayed when there is an error.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ErrorContent", + "ParentTag": "Microsoft.AspNetCore.Components.Web.ErrorBoundary" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'ErrorContent' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 157202132, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Provides functionality for rendering a virtualized list of items.\n \n The context type for the items being rendered.\n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Virtualize" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TItem", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TItem for the Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize component.", + "Metadata": { + "Common.PropertyName": "TItem", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the item template for the list.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ItemContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the item template for the list.\n \n ", + "Metadata": { + "Common.PropertyName": "ItemContent", + "Components.ChildContent": "True", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Placeholder", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the template for items that have not yet been loaded in memory.\n \n ", + "Metadata": { + "Common.PropertyName": "Placeholder", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ItemSize", + "TypeName": "System.Single", + "Documentation": "\n \n Gets the size of each item in pixels. Defaults to 50px.\n \n ", + "Metadata": { + "Common.PropertyName": "ItemSize" + } + }, + { + "Kind": "Components.Component", + "Name": "ItemsProvider", + "TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderDelegate", + "Documentation": "\n \n Gets or sets the function providing items to the list.\n \n ", + "Metadata": { + "Common.PropertyName": "ItemsProvider", + "Components.DelegateSignature": "True", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Items", + "TypeName": "System.Collections.Generic.ICollection", + "Documentation": "\n \n Gets or sets the fixed item source.\n \n ", + "Metadata": { + "Common.PropertyName": "Items", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "OverscanCount", + "TypeName": "System.Int32", + "Documentation": "\n \n Gets or sets a value that determines how many additional items will be rendered\n before and after the visible region. This help to reduce the frequency of rendering\n during scrolling. However, higher values mean that more elements will be present\n in the page.\n \n ", + "Metadata": { + "Common.PropertyName": "OverscanCount" + } + }, + { + "Kind": "Components.Component", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for all child content expressions.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize", + "Components.GenericTyped": "True" + } + }, + { + "HashCode": -54995300, + "Kind": "Components.Component", + "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Provides functionality for rendering a virtualized list of items.\n \n The context type for the items being rendered.\n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Component", + "Name": "TItem", + "TypeName": "System.Type", + "Documentation": "Specifies the type of the type parameter TItem for the Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize component.", + "Metadata": { + "Common.PropertyName": "TItem", + "Components.TypeParameter": "True", + "Components.TypeParameterIsCascading": "False" + } + }, + { + "Kind": "Components.Component", + "Name": "ChildContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the item template for the list.\n \n ", + "Metadata": { + "Common.PropertyName": "ChildContent", + "Components.ChildContent": "True", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ItemContent", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the item template for the list.\n \n ", + "Metadata": { + "Common.PropertyName": "ItemContent", + "Components.ChildContent": "True", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Placeholder", + "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", + "Documentation": "\n \n Gets or sets the template for items that have not yet been loaded in memory.\n \n ", + "Metadata": { + "Common.PropertyName": "Placeholder", + "Components.ChildContent": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "ItemSize", + "TypeName": "System.Single", + "Documentation": "\n \n Gets the size of each item in pixels. Defaults to 50px.\n \n ", + "Metadata": { + "Common.PropertyName": "ItemSize" + } + }, + { + "Kind": "Components.Component", + "Name": "ItemsProvider", + "TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderDelegate", + "Documentation": "\n \n Gets or sets the function providing items to the list.\n \n ", + "Metadata": { + "Common.PropertyName": "ItemsProvider", + "Components.DelegateSignature": "True", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "Items", + "TypeName": "System.Collections.Generic.ICollection", + "Documentation": "\n \n Gets or sets the fixed item source.\n \n ", + "Metadata": { + "Common.PropertyName": "Items", + "Components.GenericTyped": "True" + } + }, + { + "Kind": "Components.Component", + "Name": "OverscanCount", + "TypeName": "System.Int32", + "Documentation": "\n \n Gets or sets a value that determines how many additional items will be rendered\n before and after the visible region. This help to reduce the frequency of rendering\n during scrolling. However, higher values mean that more elements will be present\n in the page.\n \n ", + "Metadata": { + "Common.PropertyName": "OverscanCount" + } + }, + { + "Kind": "Components.Component", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for all child content expressions.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.IComponent", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize", + "Components.GenericTyped": "True", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 475092820, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the item template for the list.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "Virtualize" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": 1691636698, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the item template for the list.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ChildContent", + "ParentTag": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 899501059, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the item template for the list.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ItemContent", + "ParentTag": "Virtualize" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'ItemContent' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": -548279189, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the item template for the list.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "ItemContent", + "ParentTag": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'ItemContent' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -118948685, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the template for items that have not yet been loaded in memory.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Placeholder", + "ParentTag": "Virtualize" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'Placeholder' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder", + "Components.IsSpecialKind": "Components.ChildContent" + } + }, + { + "HashCode": -424404313, + "Kind": "Components.ChildContent", + "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "\n \n Gets or sets the template for items that have not yet been loaded in memory.\n \n ", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Placeholder", + "ParentTag": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize" + } + ], + "BoundAttributes": [ + { + "Kind": "Components.ChildContent", + "Name": "Context", + "TypeName": "System.String", + "Documentation": "Specifies the parameter name for the 'Placeholder' child content expression.", + "Metadata": { + "Components.ChildContentParameterName": "True", + "Common.PropertyName": "Context" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder", + "Components.IsSpecialKind": "Components.ChildContent", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -528813061, + "Kind": "Components.EventHandler", + "Name": "onfocus", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onfocus' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfocus", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfocus:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfocus:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onfocus", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onfocus' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onfocus" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfocus' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onfocus' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.FocusEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -370444117, + "Kind": "Components.EventHandler", + "Name": "onblur", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onblur' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onblur", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onblur:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onblur:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onblur", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onblur' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onblur" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onblur' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onblur' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.FocusEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 163979314, + "Kind": "Components.EventHandler", + "Name": "onfocusin", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onfocusin' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfocusin", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfocusin:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfocusin:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onfocusin", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onfocusin' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onfocusin" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfocusin' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onfocusin' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.FocusEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 746582086, + "Kind": "Components.EventHandler", + "Name": "onfocusout", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onfocusout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfocusout", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfocusout:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfocusout:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onfocusout", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onfocusout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onfocusout" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfocusout' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onfocusout' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.FocusEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1531254826, + "Kind": "Components.EventHandler", + "Name": "onmouseover", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onmouseover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmouseover", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmouseover:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmouseover:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onmouseover", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onmouseover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onmouseover" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmouseover' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onmouseover' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 765436386, + "Kind": "Components.EventHandler", + "Name": "onmouseout", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onmouseout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmouseout", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmouseout:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmouseout:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onmouseout", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onmouseout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onmouseout" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmouseout' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onmouseout' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1209204876, + "Kind": "Components.EventHandler", + "Name": "onmousemove", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onmousemove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmousemove", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmousemove:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmousemove:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onmousemove", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onmousemove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onmousemove" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmousemove' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onmousemove' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -151868392, + "Kind": "Components.EventHandler", + "Name": "onmousedown", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onmousedown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmousedown", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmousedown:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmousedown:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onmousedown", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onmousedown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onmousedown" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmousedown' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onmousedown' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1168589153, + "Kind": "Components.EventHandler", + "Name": "onmouseup", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onmouseup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmouseup", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmouseup:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmouseup:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onmouseup", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onmouseup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onmouseup" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmouseup' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onmouseup' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1399208549, + "Kind": "Components.EventHandler", + "Name": "onclick", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onclick' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onclick", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onclick:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onclick:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onclick", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onclick' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onclick" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onclick' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onclick' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1418892857, + "Kind": "Components.EventHandler", + "Name": "ondblclick", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ondblclick' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondblclick", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondblclick:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondblclick:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ondblclick", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ondblclick' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ondblclick" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondblclick' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ondblclick' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 97931501, + "Kind": "Components.EventHandler", + "Name": "onwheel", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onwheel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.WheelEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onwheel", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onwheel:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onwheel:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onwheel", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onwheel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.WheelEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onwheel" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onwheel' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onwheel' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.WheelEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1335817941, + "Kind": "Components.EventHandler", + "Name": "onmousewheel", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onmousewheel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.WheelEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmousewheel", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmousewheel:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onmousewheel:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onmousewheel", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onmousewheel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.WheelEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onmousewheel" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmousewheel' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onmousewheel' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.WheelEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1634008108, + "Kind": "Components.EventHandler", + "Name": "oncontextmenu", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@oncontextmenu' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncontextmenu", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncontextmenu:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncontextmenu:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@oncontextmenu", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@oncontextmenu' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "oncontextmenu" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncontextmenu' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@oncontextmenu' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 981612089, + "Kind": "Components.EventHandler", + "Name": "ondrag", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ondrag' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondrag", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondrag:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondrag:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ondrag", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ondrag' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ondrag" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondrag' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ondrag' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1592022288, + "Kind": "Components.EventHandler", + "Name": "ondragend", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ondragend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragend", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragend:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragend:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ondragend", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ondragend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ondragend" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragend' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ondragend' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1851110282, + "Kind": "Components.EventHandler", + "Name": "ondragenter", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ondragenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragenter", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragenter:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragenter:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ondragenter", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ondragenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ondragenter" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragenter' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ondragenter' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1734939387, + "Kind": "Components.EventHandler", + "Name": "ondragleave", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ondragleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragleave", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragleave:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragleave:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ondragleave", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ondragleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ondragleave" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragleave' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ondragleave' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1967127629, + "Kind": "Components.EventHandler", + "Name": "ondragover", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ondragover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragover", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragover:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragover:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ondragover", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ondragover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ondragover" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragover' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ondragover' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1468569487, + "Kind": "Components.EventHandler", + "Name": "ondragstart", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ondragstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragstart", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragstart:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondragstart:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ondragstart", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ondragstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ondragstart" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragstart' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ondragstart' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1684177027, + "Kind": "Components.EventHandler", + "Name": "ondrop", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ondrop' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondrop", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondrop:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondrop:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ondrop", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ondrop' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ondrop" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondrop' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ondrop' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1109642881, + "Kind": "Components.EventHandler", + "Name": "onkeydown", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onkeydown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onkeydown", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onkeydown:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onkeydown:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onkeydown", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onkeydown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onkeydown" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onkeydown' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onkeydown' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.KeyboardEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1061648688, + "Kind": "Components.EventHandler", + "Name": "onkeyup", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onkeyup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onkeyup", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onkeyup:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onkeyup:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onkeyup", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onkeyup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onkeyup" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onkeyup' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onkeyup' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.KeyboardEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 2092354706, + "Kind": "Components.EventHandler", + "Name": "onkeypress", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onkeypress' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onkeypress", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onkeypress:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onkeypress:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onkeypress", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onkeypress' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onkeypress" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onkeypress' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onkeypress' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.KeyboardEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -862655568, + "Kind": "Components.EventHandler", + "Name": "onchange", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onchange' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.ChangeEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onchange", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onchange:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onchange:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onchange", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onchange' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.ChangeEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onchange" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onchange' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onchange' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.ChangeEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1979608656, + "Kind": "Components.EventHandler", + "Name": "oninput", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@oninput' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.ChangeEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oninput", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oninput:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oninput:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@oninput", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@oninput' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.ChangeEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "oninput" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oninput' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@oninput' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.ChangeEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -101109425, + "Kind": "Components.EventHandler", + "Name": "oninvalid", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@oninvalid' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oninvalid", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oninvalid:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oninvalid:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@oninvalid", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@oninvalid' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "oninvalid" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oninvalid' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@oninvalid' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 341454195, + "Kind": "Components.EventHandler", + "Name": "onreset", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onreset' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onreset", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onreset:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onreset:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onreset", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onreset' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onreset" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onreset' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onreset' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -593001793, + "Kind": "Components.EventHandler", + "Name": "onselect", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onselect' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onselect", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onselect:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onselect:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onselect", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onselect' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onselect" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onselect' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onselect' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -10601744, + "Kind": "Components.EventHandler", + "Name": "onselectstart", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onselectstart' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onselectstart", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onselectstart:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onselectstart:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onselectstart", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onselectstart' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onselectstart" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onselectstart' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onselectstart' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1164665913, + "Kind": "Components.EventHandler", + "Name": "onselectionchange", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onselectionchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onselectionchange", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onselectionchange:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onselectionchange:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onselectionchange", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onselectionchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onselectionchange" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onselectionchange' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onselectionchange' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 800438585, + "Kind": "Components.EventHandler", + "Name": "onsubmit", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onsubmit' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onsubmit", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onsubmit:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onsubmit:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onsubmit", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onsubmit' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onsubmit" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onsubmit' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onsubmit' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1875438875, + "Kind": "Components.EventHandler", + "Name": "onbeforecopy", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onbeforecopy' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforecopy", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforecopy:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforecopy:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onbeforecopy", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onbeforecopy' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onbeforecopy" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforecopy' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onbeforecopy' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1751009391, + "Kind": "Components.EventHandler", + "Name": "onbeforecut", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onbeforecut' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforecut", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforecut:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforecut:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onbeforecut", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onbeforecut' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onbeforecut" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforecut' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onbeforecut' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 579660923, + "Kind": "Components.EventHandler", + "Name": "onbeforepaste", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onbeforepaste' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforepaste", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforepaste:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforepaste:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onbeforepaste", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onbeforepaste' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onbeforepaste" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforepaste' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onbeforepaste' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 446810870, + "Kind": "Components.EventHandler", + "Name": "oncopy", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@oncopy' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncopy", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncopy:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncopy:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@oncopy", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@oncopy' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "oncopy" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncopy' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@oncopy' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ClipboardEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1864300916, + "Kind": "Components.EventHandler", + "Name": "oncut", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@oncut' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncut", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncut:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncut:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@oncut", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@oncut' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "oncut" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncut' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@oncut' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ClipboardEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1780487112, + "Kind": "Components.EventHandler", + "Name": "onpaste", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onpaste' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpaste", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpaste:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpaste:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onpaste", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onpaste' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onpaste" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpaste' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onpaste' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ClipboardEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -350398732, + "Kind": "Components.EventHandler", + "Name": "ontouchcancel", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ontouchcancel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchcancel", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchcancel:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchcancel:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ontouchcancel", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ontouchcancel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ontouchcancel" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchcancel' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ontouchcancel' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -456397428, + "Kind": "Components.EventHandler", + "Name": "ontouchend", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ontouchend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchend", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchend:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchend:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ontouchend", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ontouchend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ontouchend" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchend' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ontouchend' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -704363820, + "Kind": "Components.EventHandler", + "Name": "ontouchmove", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ontouchmove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchmove", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchmove:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchmove:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ontouchmove", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ontouchmove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ontouchmove" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchmove' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ontouchmove' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -147374246, + "Kind": "Components.EventHandler", + "Name": "ontouchstart", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ontouchstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchstart", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchstart:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchstart:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ontouchstart", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ontouchstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ontouchstart" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchstart' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ontouchstart' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -581332849, + "Kind": "Components.EventHandler", + "Name": "ontouchenter", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ontouchenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchenter", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchenter:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchenter:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ontouchenter", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ontouchenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ontouchenter" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchenter' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ontouchenter' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -872807929, + "Kind": "Components.EventHandler", + "Name": "ontouchleave", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ontouchleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchleave", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchleave:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontouchleave:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ontouchleave", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ontouchleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ontouchleave" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchleave' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ontouchleave' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -2115904663, + "Kind": "Components.EventHandler", + "Name": "ongotpointercapture", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ongotpointercapture' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ongotpointercapture", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ongotpointercapture:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ongotpointercapture:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ongotpointercapture", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ongotpointercapture' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ongotpointercapture" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ongotpointercapture' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ongotpointercapture' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1558764531, + "Kind": "Components.EventHandler", + "Name": "onlostpointercapture", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onlostpointercapture' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onlostpointercapture", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onlostpointercapture:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onlostpointercapture:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onlostpointercapture", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onlostpointercapture' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onlostpointercapture" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onlostpointercapture' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onlostpointercapture' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1961851598, + "Kind": "Components.EventHandler", + "Name": "onpointercancel", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onpointercancel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointercancel", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointercancel:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointercancel:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onpointercancel", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onpointercancel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onpointercancel" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointercancel' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onpointercancel' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1079657007, + "Kind": "Components.EventHandler", + "Name": "onpointerdown", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onpointerdown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerdown", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerdown:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerdown:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onpointerdown", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onpointerdown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onpointerdown" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerdown' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onpointerdown' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 173262964, + "Kind": "Components.EventHandler", + "Name": "onpointerenter", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onpointerenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerenter", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerenter:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerenter:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onpointerenter", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onpointerenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onpointerenter" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerenter' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onpointerenter' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1538329512, + "Kind": "Components.EventHandler", + "Name": "onpointerleave", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onpointerleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerleave", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerleave:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerleave:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onpointerleave", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onpointerleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onpointerleave" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerleave' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onpointerleave' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1047498112, + "Kind": "Components.EventHandler", + "Name": "onpointermove", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onpointermove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointermove", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointermove:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointermove:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onpointermove", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onpointermove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onpointermove" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointermove' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onpointermove' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1584177749, + "Kind": "Components.EventHandler", + "Name": "onpointerout", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onpointerout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerout", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerout:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerout:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onpointerout", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onpointerout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onpointerout" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerout' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onpointerout' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1289549171, + "Kind": "Components.EventHandler", + "Name": "onpointerover", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onpointerover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerover", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerover:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerover:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onpointerover", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onpointerover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onpointerover" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerover' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onpointerover' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1882075772, + "Kind": "Components.EventHandler", + "Name": "onpointerup", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onpointerup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerup", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerup:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerup:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onpointerup", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onpointerup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onpointerup" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerup' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onpointerup' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1937068466, + "Kind": "Components.EventHandler", + "Name": "oncanplay", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@oncanplay' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncanplay", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncanplay:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncanplay:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@oncanplay", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@oncanplay' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "oncanplay" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncanplay' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@oncanplay' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1185770086, + "Kind": "Components.EventHandler", + "Name": "oncanplaythrough", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@oncanplaythrough' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncanplaythrough", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncanplaythrough:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncanplaythrough:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@oncanplaythrough", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@oncanplaythrough' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "oncanplaythrough" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncanplaythrough' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@oncanplaythrough' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1030355964, + "Kind": "Components.EventHandler", + "Name": "oncuechange", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@oncuechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncuechange", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncuechange:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@oncuechange:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@oncuechange", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@oncuechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "oncuechange" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncuechange' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@oncuechange' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -424876331, + "Kind": "Components.EventHandler", + "Name": "ondurationchange", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ondurationchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondurationchange", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondurationchange:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondurationchange:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ondurationchange", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ondurationchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ondurationchange" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondurationchange' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ondurationchange' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1354971903, + "Kind": "Components.EventHandler", + "Name": "onemptied", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onemptied' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onemptied", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onemptied:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onemptied:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onemptied", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onemptied' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onemptied" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onemptied' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onemptied' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1191477073, + "Kind": "Components.EventHandler", + "Name": "onpause", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onpause' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpause", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpause:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpause:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onpause", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onpause' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onpause" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpause' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onpause' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -905346647, + "Kind": "Components.EventHandler", + "Name": "onplay", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onplay' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onplay", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onplay:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onplay:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onplay", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onplay' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onplay" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onplay' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onplay' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -2130467656, + "Kind": "Components.EventHandler", + "Name": "onplaying", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onplaying' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onplaying", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onplaying:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onplaying:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onplaying", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onplaying' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onplaying" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onplaying' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onplaying' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1551293319, + "Kind": "Components.EventHandler", + "Name": "onratechange", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onratechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onratechange", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onratechange:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onratechange:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onratechange", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onratechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onratechange" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onratechange' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onratechange' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 619060703, + "Kind": "Components.EventHandler", + "Name": "onseeked", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onseeked' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onseeked", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onseeked:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onseeked:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onseeked", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onseeked' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onseeked" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onseeked' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onseeked' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 64716300, + "Kind": "Components.EventHandler", + "Name": "onseeking", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onseeking' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onseeking", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onseeking:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onseeking:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onseeking", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onseeking' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onseeking" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onseeking' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onseeking' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1382101496, + "Kind": "Components.EventHandler", + "Name": "onstalled", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onstalled' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onstalled", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onstalled:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onstalled:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onstalled", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onstalled' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onstalled" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onstalled' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onstalled' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1349279556, + "Kind": "Components.EventHandler", + "Name": "onstop", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onstop' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onstop", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onstop:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onstop:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onstop", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onstop' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onstop" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onstop' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onstop' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1302317735, + "Kind": "Components.EventHandler", + "Name": "onsuspend", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onsuspend' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onsuspend", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onsuspend:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onsuspend:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onsuspend", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onsuspend' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onsuspend" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onsuspend' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onsuspend' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1033557058, + "Kind": "Components.EventHandler", + "Name": "ontimeupdate", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ontimeupdate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontimeupdate", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontimeupdate:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontimeupdate:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ontimeupdate", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ontimeupdate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ontimeupdate" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontimeupdate' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ontimeupdate' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -839506004, + "Kind": "Components.EventHandler", + "Name": "onvolumechange", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onvolumechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onvolumechange", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onvolumechange:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onvolumechange:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onvolumechange", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onvolumechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onvolumechange" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onvolumechange' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onvolumechange' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1197461877, + "Kind": "Components.EventHandler", + "Name": "onwaiting", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onwaiting' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onwaiting", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onwaiting:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onwaiting:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onwaiting", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onwaiting' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onwaiting" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onwaiting' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onwaiting' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1308735344, + "Kind": "Components.EventHandler", + "Name": "onloadstart", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onloadstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onloadstart", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onloadstart:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onloadstart:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onloadstart", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onloadstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onloadstart" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onloadstart' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onloadstart' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -632199459, + "Kind": "Components.EventHandler", + "Name": "ontimeout", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ontimeout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontimeout", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontimeout:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontimeout:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ontimeout", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ontimeout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ontimeout" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontimeout' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ontimeout' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1181232249, + "Kind": "Components.EventHandler", + "Name": "onabort", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onabort' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onabort", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onabort:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onabort:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onabort", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onabort' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onabort" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onabort' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onabort' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 479086872, + "Kind": "Components.EventHandler", + "Name": "onload", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onload' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onload", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onload:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onload:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onload", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onload' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onload" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onload' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onload' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1896087092, + "Kind": "Components.EventHandler", + "Name": "onloadend", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onloadend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onloadend", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onloadend:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onloadend:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onloadend", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onloadend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onloadend" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onloadend' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onloadend' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1217856294, + "Kind": "Components.EventHandler", + "Name": "onprogress", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onprogress' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onprogress", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onprogress:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onprogress:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onprogress", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onprogress' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onprogress" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onprogress' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onprogress' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1850226871, + "Kind": "Components.EventHandler", + "Name": "onerror", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onerror' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ErrorEventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onerror", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onerror:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onerror:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onerror", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onerror' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ErrorEventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onerror" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onerror' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onerror' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ErrorEventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1854324592, + "Kind": "Components.EventHandler", + "Name": "onactivate", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onactivate", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onactivate:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onactivate:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onactivate", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onactivate" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onactivate' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onactivate' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1035756517, + "Kind": "Components.EventHandler", + "Name": "onbeforeactivate", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onbeforeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforeactivate", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforeactivate:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforeactivate:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onbeforeactivate", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onbeforeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onbeforeactivate" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforeactivate' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onbeforeactivate' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -151537502, + "Kind": "Components.EventHandler", + "Name": "onbeforedeactivate", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onbeforedeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforedeactivate", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforedeactivate:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onbeforedeactivate:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onbeforedeactivate", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onbeforedeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onbeforedeactivate" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforedeactivate' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onbeforedeactivate' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1818706646, + "Kind": "Components.EventHandler", + "Name": "ondeactivate", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ondeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondeactivate", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondeactivate:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ondeactivate:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ondeactivate", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ondeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ondeactivate" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondeactivate' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ondeactivate' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 65234458, + "Kind": "Components.EventHandler", + "Name": "onended", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onended' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onended", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onended:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onended:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onended", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onended' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onended" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onended' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onended' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1386714440, + "Kind": "Components.EventHandler", + "Name": "onfullscreenchange", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onfullscreenchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfullscreenchange", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfullscreenchange:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfullscreenchange:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onfullscreenchange", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onfullscreenchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onfullscreenchange" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfullscreenchange' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onfullscreenchange' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -88987101, + "Kind": "Components.EventHandler", + "Name": "onfullscreenerror", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onfullscreenerror' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfullscreenerror", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfullscreenerror:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onfullscreenerror:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onfullscreenerror", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onfullscreenerror' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onfullscreenerror" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfullscreenerror' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onfullscreenerror' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 2147048951, + "Kind": "Components.EventHandler", + "Name": "onloadeddata", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onloadeddata' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onloadeddata", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onloadeddata:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onloadeddata:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onloadeddata", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onloadeddata' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onloadeddata" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onloadeddata' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onloadeddata' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -1551937881, + "Kind": "Components.EventHandler", + "Name": "onloadedmetadata", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onloadedmetadata' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onloadedmetadata", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onloadedmetadata:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onloadedmetadata:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onloadedmetadata", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onloadedmetadata' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onloadedmetadata" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onloadedmetadata' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onloadedmetadata' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -178073901, + "Kind": "Components.EventHandler", + "Name": "onpointerlockchange", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onpointerlockchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerlockchange", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerlockchange:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerlockchange:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onpointerlockchange", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onpointerlockchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onpointerlockchange" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerlockchange' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onpointerlockchange' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 1702914245, + "Kind": "Components.EventHandler", + "Name": "onpointerlockerror", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onpointerlockerror' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerlockerror", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerlockerror:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onpointerlockerror:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onpointerlockerror", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onpointerlockerror' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onpointerlockerror" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerlockerror' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onpointerlockerror' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -36211433, + "Kind": "Components.EventHandler", + "Name": "onreadystatechange", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onreadystatechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onreadystatechange", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onreadystatechange:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onreadystatechange:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onreadystatechange", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onreadystatechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onreadystatechange" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onreadystatechange' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onreadystatechange' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 719531377, + "Kind": "Components.EventHandler", + "Name": "onscroll", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@onscroll' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onscroll", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onscroll:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@onscroll:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@onscroll", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@onscroll' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "onscroll" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onscroll' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@onscroll' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": 796852457, + "Kind": "Components.EventHandler", + "Name": "ontoggle", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Sets the '@ontoggle' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontoggle", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontoggle:preventDefault", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + }, + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ontoggle:stopPropagation", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.EventHandler", + "Name": "@ontoggle", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Sets the '@ontoggle' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", + "Metadata": { + "Components.IsWeaklyTyped": "True", + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "ontoggle" + }, + "BoundAttributeParameters": [ + { + "Name": "preventDefault", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontoggle' event.", + "Metadata": { + "Common.PropertyName": "PreventDefault" + } + }, + { + "Name": "stopPropagation", + "TypeName": "System.Boolean", + "Documentation": "Specifies whether to prevent further propagation of the '@ontoggle' event in the capturing and bubbling phases.", + "Metadata": { + "Common.PropertyName": "StopPropagation" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.EventHandler", + "Components.EventHandler.EventArgs": "System.EventArgs", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" + } + }, + { + "HashCode": -934540560, + "Kind": "Components.Splat", + "Name": "Attributes", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Merges a collection of attributes into the current element or component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@attributes", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Splat", + "Name": "@attributes", + "TypeName": "System.Object", + "Documentation": "Merges a collection of attributes into the current element or component.", + "Metadata": { + "Common.PropertyName": "Attributes", + "Common.DirectiveAttribute": "True" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Splat", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Attributes" + } + }, + { + "HashCode": 1716280543, + "Kind": "Components.Bind", + "Name": "Bind", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to an attribute and a change event, based on the naming of the bind attribute. For example: @bind-value=\"...\" and @bind-value:event=\"onchange\" will assign the current value of the expression to the 'value' attribute, and assign a delegate that attempts to set the value to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@bind-", + "NameComparison": 1, + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-...", + "TypeName": "System.Collections.Generic.Dictionary", + "IndexerNamePrefix": "@bind-", + "IndexerTypeName": "System.Object", + "Documentation": "Binds the provided expression to an attribute and a change event, based on the naming of the bind attribute. For example: @bind-value=\"...\" and @bind-value:event=\"onchange\" will assign the current value of the expression to the 'value' attribute, and assign a delegate that attempts to set the value to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the corresponding bind attribute. For example: @bind-value:format=\"...\" will apply a format string to the value specified in @bind-value=\"...\". The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-...' attribute.", + "Metadata": { + "Common.PropertyName": "Event" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.Fallback": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Bind" + } + }, + { + "HashCode": 802539187, + "Kind": "Components.Bind", + "Name": "Bind", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "input", + "Attributes": [ + { + "Name": "@bind", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "False", + "Components.Bind.Format": null, + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": -1341525497, + "Kind": "Components.Bind", + "Name": "Bind_value", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "input", + "Attributes": [ + { + "Name": "@bind-value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-value", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind_value" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "False", + "Components.Bind.Format": null, + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": -296594372, + "Kind": "Components.Bind", + "Name": "Bind", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'checked' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "input", + "Attributes": [ + { + "Name": "type", + "Value": "checkbox", + "ValueComparison": 1 + }, + { + "Name": "@bind", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'checked' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_checked" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", + "Metadata": { + "Common.PropertyName": "Event_checked" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-checked", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_checked" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "checked", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "False", + "Components.Bind.Format": null, + "Components.Bind.TypeAttribute": "checkbox", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": -772676443, + "Kind": "Components.Bind", + "Name": "Bind", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "input", + "Attributes": [ + { + "Name": "type", + "Value": "text", + "ValueComparison": 1 + }, + { + "Name": "@bind", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "False", + "Components.Bind.Format": null, + "Components.Bind.TypeAttribute": "text", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": 226664623, + "Kind": "Components.Bind", + "Name": "Bind", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "input", + "Attributes": [ + { + "Name": "type", + "Value": "number", + "ValueComparison": 1 + }, + { + "Name": "@bind", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "True", + "Components.Bind.Format": null, + "Components.Bind.TypeAttribute": "number", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": -1896418532, + "Kind": "Components.Bind", + "Name": "Bind_value", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "input", + "Attributes": [ + { + "Name": "type", + "Value": "number", + "ValueComparison": 1 + }, + { + "Name": "@bind-value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-value", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind_value" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "True", + "Components.Bind.Format": null, + "Components.Bind.TypeAttribute": "number", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": -181110137, + "Kind": "Components.Bind", + "Name": "Bind", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "input", + "Attributes": [ + { + "Name": "type", + "Value": "date", + "ValueComparison": 1 + }, + { + "Name": "@bind", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "True", + "Components.Bind.Format": "yyyy-MM-dd", + "Components.Bind.TypeAttribute": "date", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": -78732513, + "Kind": "Components.Bind", + "Name": "Bind_value", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "input", + "Attributes": [ + { + "Name": "type", + "Value": "date", + "ValueComparison": 1 + }, + { + "Name": "@bind-value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-value", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind_value" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "True", + "Components.Bind.Format": "yyyy-MM-dd", + "Components.Bind.TypeAttribute": "date", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": -1359858400, + "Kind": "Components.Bind", + "Name": "Bind", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "input", + "Attributes": [ + { + "Name": "type", + "Value": "datetime-local", + "ValueComparison": 1 + }, + { + "Name": "@bind", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "True", + "Components.Bind.Format": "yyyy-MM-ddTHH:mm:ss", + "Components.Bind.TypeAttribute": "datetime-local", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": -467493197, + "Kind": "Components.Bind", + "Name": "Bind_value", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "input", + "Attributes": [ + { + "Name": "type", + "Value": "datetime-local", + "ValueComparison": 1 + }, + { + "Name": "@bind-value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-value", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind_value" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "True", + "Components.Bind.Format": "yyyy-MM-ddTHH:mm:ss", + "Components.Bind.TypeAttribute": "datetime-local", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": -666389649, + "Kind": "Components.Bind", + "Name": "Bind", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "input", + "Attributes": [ + { + "Name": "type", + "Value": "month", + "ValueComparison": 1 + }, + { + "Name": "@bind", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "True", + "Components.Bind.Format": "yyyy-MM", + "Components.Bind.TypeAttribute": "month", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": 233801787, + "Kind": "Components.Bind", + "Name": "Bind_value", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "input", + "Attributes": [ + { + "Name": "type", + "Value": "month", + "ValueComparison": 1 + }, + { + "Name": "@bind-value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-value", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind_value" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "True", + "Components.Bind.Format": "yyyy-MM", + "Components.Bind.TypeAttribute": "month", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": -518654332, + "Kind": "Components.Bind", + "Name": "Bind", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "input", + "Attributes": [ + { + "Name": "type", + "Value": "time", + "ValueComparison": 1 + }, + { + "Name": "@bind", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "True", + "Components.Bind.Format": "HH:mm:ss", + "Components.Bind.TypeAttribute": "time", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": 551603290, + "Kind": "Components.Bind", + "Name": "Bind_value", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "input", + "Attributes": [ + { + "Name": "type", + "Value": "time", + "ValueComparison": 1 + }, + { + "Name": "@bind-value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-value", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind_value" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "True", + "Components.Bind.Format": "HH:mm:ss", + "Components.Bind.TypeAttribute": "time", + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": -1844037993, + "Kind": "Components.Bind", + "Name": "Bind", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "select", + "Attributes": [ + { + "Name": "@bind", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "False", + "Components.Bind.Format": null, + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": 1817039679, + "Kind": "Components.Bind", + "Name": "Bind", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "textarea", + "Attributes": [ + { + "Name": "@bind", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind", + "TypeName": "System.Object", + "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Bind" + }, + "BoundAttributeParameters": [ + { + "Name": "format", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + }, + { + "Name": "event", + "TypeName": "System.String", + "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", + "Metadata": { + "Common.PropertyName": "Event_value" + } + }, + { + "Name": "culture", + "TypeName": "System.Globalization.CultureInfo", + "Documentation": "Specifies the culture to use for conversions.", + "Metadata": { + "Common.PropertyName": "Culture" + } + } + ] + }, + { + "Kind": "Components.Bind", + "Name": "format-value", + "TypeName": "System.String", + "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", + "Metadata": { + "Common.PropertyName": "Format_value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Common.ClassifyAttributesOnly": "True", + "Components.Bind.ValueAttribute": "value", + "Components.Bind.ChangeAttribute": "onchange", + "Components.Bind.IsInvariantCulture": "False", + "Components.Bind.Format": null, + "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" + } + }, + { + "HashCode": -2064884484, + "Kind": "Components.Bind", + "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputCheckbox", + "Attributes": [ + { + "Name": "@bind-Value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-Value", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Components.Bind.ValueAttribute": "Value", + "Components.Bind.ChangeAttribute": "ValueChanged", + "Components.Bind.ExpressionAttribute": "ValueExpression", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox" + } + }, + { + "HashCode": -1887400494, + "Kind": "Components.Bind", + "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", + "Attributes": [ + { + "Name": "@bind-Value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-Value", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Components.Bind.ValueAttribute": "Value", + "Components.Bind.ChangeAttribute": "ValueChanged", + "Components.Bind.ExpressionAttribute": "ValueExpression", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -1081182064, + "Kind": "Components.Bind", + "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputDate", + "Attributes": [ + { + "Name": "@bind-Value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-Value", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Components.Bind.ValueAttribute": "Value", + "Components.Bind.ChangeAttribute": "ValueChanged", + "Components.Bind.ExpressionAttribute": "ValueExpression", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputDate" + } + }, + { + "HashCode": -617317129, + "Kind": "Components.Bind", + "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputDate", + "Attributes": [ + { + "Name": "@bind-Value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-Value", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Components.Bind.ValueAttribute": "Value", + "Components.Bind.ChangeAttribute": "ValueChanged", + "Components.Bind.ExpressionAttribute": "ValueExpression", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputDate", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -1195323593, + "Kind": "Components.Bind", + "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputNumber", + "Attributes": [ + { + "Name": "@bind-Value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-Value", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Components.Bind.ValueAttribute": "Value", + "Components.Bind.ChangeAttribute": "ValueChanged", + "Components.Bind.ExpressionAttribute": "ValueExpression", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputNumber" + } + }, + { + "HashCode": -2015879770, + "Kind": "Components.Bind", + "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputNumber", + "Attributes": [ + { + "Name": "@bind-Value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-Value", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Components.Bind.ValueAttribute": "Value", + "Components.Bind.ChangeAttribute": "ValueChanged", + "Components.Bind.ExpressionAttribute": "ValueExpression", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputNumber", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -1897143174, + "Kind": "Components.Bind", + "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputRadioGroup", + "Attributes": [ + { + "Name": "@bind-Value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-Value", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Components.Bind.ValueAttribute": "Value", + "Components.Bind.ChangeAttribute": "ValueChanged", + "Components.Bind.ExpressionAttribute": "ValueExpression", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup" + } + }, + { + "HashCode": -23755927, + "Kind": "Components.Bind", + "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", + "Attributes": [ + { + "Name": "@bind-Value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-Value", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Components.Bind.ValueAttribute": "Value", + "Components.Bind.ChangeAttribute": "ValueChanged", + "Components.Bind.ExpressionAttribute": "ValueExpression", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 658315621, + "Kind": "Components.Bind", + "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputSelect", + "Attributes": [ + { + "Name": "@bind-Value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-Value", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Components.Bind.ValueAttribute": "Value", + "Components.Bind.ChangeAttribute": "ValueChanged", + "Components.Bind.ExpressionAttribute": "ValueExpression", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect" + } + }, + { + "HashCode": 963284391, + "Kind": "Components.Bind", + "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputSelect", + "Attributes": [ + { + "Name": "@bind-Value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-Value", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Components.Bind.ValueAttribute": "Value", + "Components.Bind.ChangeAttribute": "ValueChanged", + "Components.Bind.ExpressionAttribute": "ValueExpression", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": -1270043928, + "Kind": "Components.Bind", + "Name": "Microsoft.AspNetCore.Components.Forms.InputText", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputText", + "Attributes": [ + { + "Name": "@bind-Value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-Value", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Components.Bind.ValueAttribute": "Value", + "Components.Bind.ChangeAttribute": "ValueChanged", + "Components.Bind.ExpressionAttribute": "ValueExpression", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputText" + } + }, + { + "HashCode": 1510684931, + "Kind": "Components.Bind", + "Name": "Microsoft.AspNetCore.Components.Forms.InputText", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputText", + "Attributes": [ + { + "Name": "@bind-Value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-Value", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Components.Bind.ValueAttribute": "Value", + "Components.Bind.ChangeAttribute": "ValueChanged", + "Components.Bind.ExpressionAttribute": "ValueExpression", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputText", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 67399854, + "Kind": "Components.Bind", + "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "InputTextArea", + "Attributes": [ + { + "Name": "@bind-Value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-Value", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Components.Bind.ValueAttribute": "Value", + "Components.Bind.ChangeAttribute": "ValueChanged", + "Components.Bind.ExpressionAttribute": "ValueExpression", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputTextArea" + } + }, + { + "HashCode": 1991963112, + "Kind": "Components.Bind", + "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", + "AssemblyName": "Microsoft.AspNetCore.Components.Web", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "Microsoft.AspNetCore.Components.Forms.InputTextArea", + "Attributes": [ + { + "Name": "@bind-Value", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Bind", + "Name": "@bind-Value", + "TypeName": "Microsoft.AspNetCore.Components.EventCallback", + "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", + "Metadata": { + "Common.DirectiveAttribute": "True", + "Common.PropertyName": "Value" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Bind", + "Components.Bind.ValueAttribute": "Value", + "Components.Bind.ChangeAttribute": "ValueChanged", + "Components.Bind.ExpressionAttribute": "ValueExpression", + "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputTextArea", + "Components.NameMatch": "Components.FullyQualifiedNameMatch" + } + }, + { + "HashCode": 1362963630, + "Kind": "Components.Ref", + "Name": "Ref", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Populates the specified field or property with a reference to the element or component.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@ref", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Ref", + "Name": "@ref", + "TypeName": "System.Object", + "Documentation": "Populates the specified field or property with a reference to the element or component.", + "Metadata": { + "Common.PropertyName": "Ref", + "Common.DirectiveAttribute": "True" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Ref", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Ref" + } + }, + { + "HashCode": 231179689, + "Kind": "Components.Key", + "Name": "Key", + "AssemblyName": "Microsoft.AspNetCore.Components", + "Documentation": "Ensures that the component or element will be preserved across renders if (and only if) the supplied key value matches.", + "CaseSensitive": true, + "TagMatchingRules": [ + { + "TagName": "*", + "Attributes": [ + { + "Name": "@key", + "Metadata": { + "Common.DirectiveAttribute": "True" + } + } + ] + } + ], + "BoundAttributes": [ + { + "Kind": "Components.Key", + "Name": "@key", + "TypeName": "System.Object", + "Documentation": "Ensures that the component or element will be preserved across renders if (and only if) the supplied key value matches.", + "Metadata": { + "Common.PropertyName": "Key", + "Common.DirectiveAttribute": "True" + } + } + ], + "Metadata": { + "Runtime.Name": "Components.None", + "Components.IsSpecialKind": "Components.Key", + "Common.ClassifyAttributesOnly": "True", + "Common.TypeName": "Microsoft.AspNetCore.Components.Key" + } + } + ], + "CSharpLanguageVersion": 1000 + }, + "RootNamespace": "CS_Todo", + "Documents": [ + { + "FilePath": "/Users/normrasmussen/Documents/Northpass/CS_Todo/Pages/Counter.razor", + "TargetPath": "Pages\\Counter.razor", + "FileKind": "component" + }, + { + "FilePath": "/Users/normrasmussen/Documents/Northpass/CS_Todo/_Imports.razor", + "TargetPath": "_Imports.razor", + "FileKind": "componentImport" + }, + { + "FilePath": "/Users/normrasmussen/Documents/Northpass/CS_Todo/Shared/SurveyPrompt.razor", + "TargetPath": "Shared\\SurveyPrompt.razor", + "FileKind": "component" + }, + { + "FilePath": "/Users/normrasmussen/Documents/Northpass/CS_Todo/Pages/Index.razor", + "TargetPath": "Pages\\Index.razor", + "FileKind": "component" + }, + { + "FilePath": "/Users/normrasmussen/Documents/Northpass/CS_Todo/Shared/NavMenu.razor", + "TargetPath": "Shared\\NavMenu.razor", + "FileKind": "component" + }, + { + "FilePath": "/Users/normrasmussen/Documents/Northpass/CS_Todo/Pages/TodoList.razor", + "TargetPath": "Pages\\TodoList.razor", + "FileKind": "component" + }, + { + "FilePath": "/Users/normrasmussen/Documents/Northpass/CS_Todo/Pages/FetchData.razor", + "TargetPath": "Pages\\FetchData.razor", + "FileKind": "component" + }, + { + "FilePath": "/Users/normrasmussen/Documents/Northpass/CS_Todo/Shared/MainLayout.razor", + "TargetPath": "Shared\\MainLayout.razor", + "FileKind": "component" + }, + { + "FilePath": "/Users/normrasmussen/Documents/Northpass/CS_Todo/App.razor", + "TargetPath": "App.razor", + "FileKind": "component" + } + ], + "SerializationFormat": "0.2" +} \ No newline at end of file diff --git a/CS_Todo/obj/Debug/net6.0/ref/CS_Todo.dll b/CS_Todo/obj/Debug/net6.0/ref/CS_Todo.dll new file mode 100644 index 00000000..f536907c Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/ref/CS_Todo.dll differ diff --git a/CS_Todo/obj/Debug/net6.0/refint/CS_Todo.dll b/CS_Todo/obj/Debug/net6.0/refint/CS_Todo.dll new file mode 100644 index 00000000..f536907c Binary files /dev/null and b/CS_Todo/obj/Debug/net6.0/refint/CS_Todo.dll differ diff --git a/CS_Todo/obj/Debug/net6.0/scopedcss/Shared/MainLayout.razor.rz.scp.css b/CS_Todo/obj/Debug/net6.0/scopedcss/Shared/MainLayout.razor.rz.scp.css new file mode 100644 index 00000000..97391671 --- /dev/null +++ b/CS_Todo/obj/Debug/net6.0/scopedcss/Shared/MainLayout.razor.rz.scp.css @@ -0,0 +1,81 @@ +.page[b-j28dahcn9v] { + position: relative; + display: flex; + flex-direction: column; +} + +main[b-j28dahcn9v] { + flex: 1; +} + +.sidebar[b-j28dahcn9v] { + background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); +} + +.top-row[b-j28dahcn9v] { + background-color: #f7f7f7; + border-bottom: 1px solid #d6d5d5; + justify-content: flex-end; + height: 3.5rem; + display: flex; + align-items: center; +} + + .top-row[b-j28dahcn9v] a, .top-row[b-j28dahcn9v] .btn-link { + white-space: nowrap; + margin-left: 1.5rem; + text-decoration: none; + } + + .top-row[b-j28dahcn9v] a:hover, .top-row[b-j28dahcn9v] .btn-link:hover { + text-decoration: underline; + } + + .top-row[b-j28dahcn9v] a:first-child { + overflow: hidden; + text-overflow: ellipsis; + } + +@media (max-width: 640.98px) { + .top-row:not(.auth)[b-j28dahcn9v] { + display: none; + } + + .top-row.auth[b-j28dahcn9v] { + justify-content: space-between; + } + + .top-row[b-j28dahcn9v] a, .top-row[b-j28dahcn9v] .btn-link { + margin-left: 0; + } +} + +@media (min-width: 641px) { + .page[b-j28dahcn9v] { + flex-direction: row; + } + + .sidebar[b-j28dahcn9v] { + width: 250px; + height: 100vh; + position: sticky; + top: 0; + } + + .top-row[b-j28dahcn9v] { + position: sticky; + top: 0; + z-index: 1; + } + + .top-row.auth[b-j28dahcn9v] a:first-child { + flex: 1; + text-align: right; + width: 0; + } + + .top-row[b-j28dahcn9v], article[b-j28dahcn9v] { + padding-left: 2rem !important; + padding-right: 1.5rem !important; + } +} diff --git a/CS_Todo/obj/Debug/net6.0/scopedcss/Shared/NavMenu.razor.rz.scp.css b/CS_Todo/obj/Debug/net6.0/scopedcss/Shared/NavMenu.razor.rz.scp.css new file mode 100644 index 00000000..23d99659 --- /dev/null +++ b/CS_Todo/obj/Debug/net6.0/scopedcss/Shared/NavMenu.razor.rz.scp.css @@ -0,0 +1,62 @@ +.navbar-toggler[b-horb3d2a39] { + background-color: rgba(255, 255, 255, 0.1); +} + +.top-row[b-horb3d2a39] { + height: 3.5rem; + background-color: rgba(0,0,0,0.4); +} + +.navbar-brand[b-horb3d2a39] { + font-size: 1.1rem; +} + +.oi[b-horb3d2a39] { + width: 2rem; + font-size: 1.1rem; + vertical-align: text-top; + top: -2px; +} + +.nav-item[b-horb3d2a39] { + font-size: 0.9rem; + padding-bottom: 0.5rem; +} + + .nav-item:first-of-type[b-horb3d2a39] { + padding-top: 1rem; + } + + .nav-item:last-of-type[b-horb3d2a39] { + padding-bottom: 1rem; + } + + .nav-item[b-horb3d2a39] a { + color: #d7d7d7; + border-radius: 4px; + height: 3rem; + display: flex; + align-items: center; + line-height: 3rem; + } + +.nav-item[b-horb3d2a39] a.active { + background-color: rgba(255,255,255,0.25); + color: white; +} + +.nav-item[b-horb3d2a39] a:hover { + background-color: rgba(255,255,255,0.1); + color: white; +} + +@media (min-width: 641px) { + .navbar-toggler[b-horb3d2a39] { + display: none; + } + + .collapse[b-horb3d2a39] { + /* Never collapse the sidebar for wide screens */ + display: block; + } +} diff --git a/CS_Todo/obj/Debug/net6.0/scopedcss/bundle/CS_Todo.styles.css b/CS_Todo/obj/Debug/net6.0/scopedcss/bundle/CS_Todo.styles.css new file mode 100644 index 00000000..804c072b --- /dev/null +++ b/CS_Todo/obj/Debug/net6.0/scopedcss/bundle/CS_Todo.styles.css @@ -0,0 +1,145 @@ +/* /Shared/MainLayout.razor.rz.scp.css */ +.page[b-j28dahcn9v] { + position: relative; + display: flex; + flex-direction: column; +} + +main[b-j28dahcn9v] { + flex: 1; +} + +.sidebar[b-j28dahcn9v] { + background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); +} + +.top-row[b-j28dahcn9v] { + background-color: #f7f7f7; + border-bottom: 1px solid #d6d5d5; + justify-content: flex-end; + height: 3.5rem; + display: flex; + align-items: center; +} + + .top-row[b-j28dahcn9v] a, .top-row[b-j28dahcn9v] .btn-link { + white-space: nowrap; + margin-left: 1.5rem; + text-decoration: none; + } + + .top-row[b-j28dahcn9v] a:hover, .top-row[b-j28dahcn9v] .btn-link:hover { + text-decoration: underline; + } + + .top-row[b-j28dahcn9v] a:first-child { + overflow: hidden; + text-overflow: ellipsis; + } + +@media (max-width: 640.98px) { + .top-row:not(.auth)[b-j28dahcn9v] { + display: none; + } + + .top-row.auth[b-j28dahcn9v] { + justify-content: space-between; + } + + .top-row[b-j28dahcn9v] a, .top-row[b-j28dahcn9v] .btn-link { + margin-left: 0; + } +} + +@media (min-width: 641px) { + .page[b-j28dahcn9v] { + flex-direction: row; + } + + .sidebar[b-j28dahcn9v] { + width: 250px; + height: 100vh; + position: sticky; + top: 0; + } + + .top-row[b-j28dahcn9v] { + position: sticky; + top: 0; + z-index: 1; + } + + .top-row.auth[b-j28dahcn9v] a:first-child { + flex: 1; + text-align: right; + width: 0; + } + + .top-row[b-j28dahcn9v], article[b-j28dahcn9v] { + padding-left: 2rem !important; + padding-right: 1.5rem !important; + } +} +/* /Shared/NavMenu.razor.rz.scp.css */ +.navbar-toggler[b-horb3d2a39] { + background-color: rgba(255, 255, 255, 0.1); +} + +.top-row[b-horb3d2a39] { + height: 3.5rem; + background-color: rgba(0,0,0,0.4); +} + +.navbar-brand[b-horb3d2a39] { + font-size: 1.1rem; +} + +.oi[b-horb3d2a39] { + width: 2rem; + font-size: 1.1rem; + vertical-align: text-top; + top: -2px; +} + +.nav-item[b-horb3d2a39] { + font-size: 0.9rem; + padding-bottom: 0.5rem; +} + + .nav-item:first-of-type[b-horb3d2a39] { + padding-top: 1rem; + } + + .nav-item:last-of-type[b-horb3d2a39] { + padding-bottom: 1rem; + } + + .nav-item[b-horb3d2a39] a { + color: #d7d7d7; + border-radius: 4px; + height: 3rem; + display: flex; + align-items: center; + line-height: 3rem; + } + +.nav-item[b-horb3d2a39] a.active { + background-color: rgba(255,255,255,0.25); + color: white; +} + +.nav-item[b-horb3d2a39] a:hover { + background-color: rgba(255,255,255,0.1); + color: white; +} + +@media (min-width: 641px) { + .navbar-toggler[b-horb3d2a39] { + display: none; + } + + .collapse[b-horb3d2a39] { + /* Never collapse the sidebar for wide screens */ + display: block; + } +} diff --git a/CS_Todo/obj/Debug/net6.0/scopedcss/projectbundle/CS_Todo.bundle.scp.css b/CS_Todo/obj/Debug/net6.0/scopedcss/projectbundle/CS_Todo.bundle.scp.css new file mode 100644 index 00000000..804c072b --- /dev/null +++ b/CS_Todo/obj/Debug/net6.0/scopedcss/projectbundle/CS_Todo.bundle.scp.css @@ -0,0 +1,145 @@ +/* /Shared/MainLayout.razor.rz.scp.css */ +.page[b-j28dahcn9v] { + position: relative; + display: flex; + flex-direction: column; +} + +main[b-j28dahcn9v] { + flex: 1; +} + +.sidebar[b-j28dahcn9v] { + background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); +} + +.top-row[b-j28dahcn9v] { + background-color: #f7f7f7; + border-bottom: 1px solid #d6d5d5; + justify-content: flex-end; + height: 3.5rem; + display: flex; + align-items: center; +} + + .top-row[b-j28dahcn9v] a, .top-row[b-j28dahcn9v] .btn-link { + white-space: nowrap; + margin-left: 1.5rem; + text-decoration: none; + } + + .top-row[b-j28dahcn9v] a:hover, .top-row[b-j28dahcn9v] .btn-link:hover { + text-decoration: underline; + } + + .top-row[b-j28dahcn9v] a:first-child { + overflow: hidden; + text-overflow: ellipsis; + } + +@media (max-width: 640.98px) { + .top-row:not(.auth)[b-j28dahcn9v] { + display: none; + } + + .top-row.auth[b-j28dahcn9v] { + justify-content: space-between; + } + + .top-row[b-j28dahcn9v] a, .top-row[b-j28dahcn9v] .btn-link { + margin-left: 0; + } +} + +@media (min-width: 641px) { + .page[b-j28dahcn9v] { + flex-direction: row; + } + + .sidebar[b-j28dahcn9v] { + width: 250px; + height: 100vh; + position: sticky; + top: 0; + } + + .top-row[b-j28dahcn9v] { + position: sticky; + top: 0; + z-index: 1; + } + + .top-row.auth[b-j28dahcn9v] a:first-child { + flex: 1; + text-align: right; + width: 0; + } + + .top-row[b-j28dahcn9v], article[b-j28dahcn9v] { + padding-left: 2rem !important; + padding-right: 1.5rem !important; + } +} +/* /Shared/NavMenu.razor.rz.scp.css */ +.navbar-toggler[b-horb3d2a39] { + background-color: rgba(255, 255, 255, 0.1); +} + +.top-row[b-horb3d2a39] { + height: 3.5rem; + background-color: rgba(0,0,0,0.4); +} + +.navbar-brand[b-horb3d2a39] { + font-size: 1.1rem; +} + +.oi[b-horb3d2a39] { + width: 2rem; + font-size: 1.1rem; + vertical-align: text-top; + top: -2px; +} + +.nav-item[b-horb3d2a39] { + font-size: 0.9rem; + padding-bottom: 0.5rem; +} + + .nav-item:first-of-type[b-horb3d2a39] { + padding-top: 1rem; + } + + .nav-item:last-of-type[b-horb3d2a39] { + padding-bottom: 1rem; + } + + .nav-item[b-horb3d2a39] a { + color: #d7d7d7; + border-radius: 4px; + height: 3rem; + display: flex; + align-items: center; + line-height: 3rem; + } + +.nav-item[b-horb3d2a39] a.active { + background-color: rgba(255,255,255,0.25); + color: white; +} + +.nav-item[b-horb3d2a39] a:hover { + background-color: rgba(255,255,255,0.1); + color: white; +} + +@media (min-width: 641px) { + .navbar-toggler[b-horb3d2a39] { + display: none; + } + + .collapse[b-horb3d2a39] { + /* Never collapse the sidebar for wide screens */ + display: block; + } +} diff --git a/CS_Todo/obj/Debug/net6.0/staticwebassets.build.json b/CS_Todo/obj/Debug/net6.0/staticwebassets.build.json new file mode 100644 index 00000000..33b5b82e --- /dev/null +++ b/CS_Todo/obj/Debug/net6.0/staticwebassets.build.json @@ -0,0 +1,7109 @@ +{ + "Version": 1, + "Hash": "1KDNwLa4/N30syi9DWWH3oz+QFFKbupoOL9SA+keEv8=", + "Source": "CS_Todo", + "BasePath": "/", + "Mode": "Root", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [ + { + "Name": "CS_Todo/wwwroot", + "Source": "CS_Todo", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/", + "BasePath": "/", + "Pattern": "**" + } + ], + "Assets": [ + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/blazor.boot.json", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/blazor.boot.json", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "manifest", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "obj/Debug/net6.0/blazor.boot.json" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/blazor.webassembly.js", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/blazor.webassembly.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "boot", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components.webassembly/6.0.5/build/net6.0/blazor.webassembly.js" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/CS_Todo.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/CS_Todo.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "obj/Debug/net6.0/CS_Todo.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/CS_Todo.pdb", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/CS_Todo.pdb", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "symbol", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "obj/Debug/net6.0/CS_Todo.pdb" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.6.0.5.itaht6zf1c.js", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/dotnet.6.0.5.itaht6zf1c.js", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "native", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/native/dotnet.js" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.timezones.blat", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/dotnet.timezones.blat", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "native", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/native/dotnet.timezones.blat" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.wasm", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/dotnet.wasm", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "native", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/native/dotnet.wasm" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_CJK.dat", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/icudt_CJK.dat", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "native", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/native/icudt_CJK.dat" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_EFIGS.dat", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/icudt_EFIGS.dat", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "native", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/native/icudt_EFIGS.dat" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_no_CJK.dat", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/icudt_no_CJK.dat", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "native", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/native/icudt_no_CJK.dat" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt.dat", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/icudt.dat", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "native", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/native/icudt.dat" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.authorization/6.0.5/lib/net6.0/Microsoft.AspNetCore.Authorization.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components/6.0.5/lib/net6.0/Microsoft.AspNetCore.Components.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components.forms/6.0.5/lib/net6.0/Microsoft.AspNetCore.Components.Forms.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components.web/6.0.5/lib/net6.0/Microsoft.AspNetCore.Components.Web.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components.webassembly/6.0.5/lib/net6.0/Microsoft.AspNetCore.Components.WebAssembly.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.metadata/6.0.5/lib/net6.0/Microsoft.AspNetCore.Metadata.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.CSharp.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.CSharp.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/Microsoft.CSharp.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.configuration.abstractions/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.configuration.binder/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.configuration/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.configuration.fileextensions/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.configuration.json/6.0.0/lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/6.0.0/lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.dependencyinjection/6.0.0/lib/net6.0/Microsoft.Extensions.DependencyInjection.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.fileproviders.abstractions/6.0.0/lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.fileproviders.physical/6.0.0/lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.filesystemglobbing/6.0.0/lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.logging.abstractions/6.0.1/lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.logging/6.0.0/lib/netstandard2.1/Microsoft.Extensions.Logging.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Options.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Options.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.options/6.0.0/lib/netstandard2.1/Microsoft.Extensions.Options.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.extensions.primitives/6.0.0/lib/net6.0/Microsoft.Extensions.Primitives.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.JSInterop.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.jsinterop/6.0.5/lib/net6.0/Microsoft.JSInterop.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.jsinterop.webassembly/6.0.5/lib/net6.0/Microsoft.JSInterop.WebAssembly.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/Microsoft.VisualBasic.Core.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.VisualBasic.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/Microsoft.VisualBasic.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Win32.Primitives.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/Microsoft.Win32.Primitives.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Registry.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Win32.Registry.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/Microsoft.Win32.Registry.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/mscorlib.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/mscorlib.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/mscorlib.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/netstandard.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/netstandard.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/netstandard.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.AppContext.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.AppContext.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.AppContext.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Buffers.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Buffers.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Buffers.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Concurrent.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Collections.Concurrent.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Collections.Concurrent.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Collections.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Collections.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Immutable.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Collections.Immutable.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Collections.Immutable.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.NonGeneric.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Collections.NonGeneric.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Collections.NonGeneric.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Specialized.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Collections.Specialized.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Collections.Specialized.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Annotations.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.ComponentModel.Annotations.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.ComponentModel.Annotations.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.ComponentModel.DataAnnotations.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.ComponentModel.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.ComponentModel.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.ComponentModel.EventBasedAsync.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Primitives.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.ComponentModel.Primitives.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.ComponentModel.Primitives.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.ComponentModel.TypeConverter.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Configuration.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Configuration.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Configuration.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Console.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Console.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Console.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Core.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Core.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Core.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.Common.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Data.Common.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Data.Common.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.DataSetExtensions.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Data.DataSetExtensions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Data.DataSetExtensions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Data.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Data.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Contracts.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.Contracts.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Diagnostics.Contracts.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Debug.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.Debug.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Diagnostics.Debug.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Diagnostics.DiagnosticSource.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Diagnostics.FileVersionInfo.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Process.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.Process.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Diagnostics.Process.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.StackTrace.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Diagnostics.StackTrace.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Diagnostics.TextWriterTraceListener.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tools.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.Tools.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Diagnostics.Tools.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.TraceSource.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Diagnostics.TraceSource.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tracing.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.Tracing.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Diagnostics.Tracing.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Drawing.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Drawing.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.Primitives.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Drawing.Primitives.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Drawing.Primitives.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Dynamic.Runtime.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Dynamic.Runtime.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Dynamic.Runtime.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Formats.Asn1.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Formats.Asn1.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Formats.Asn1.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Calendars.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Globalization.Calendars.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Globalization.Calendars.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Globalization.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Globalization.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Extensions.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Globalization.Extensions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Globalization.Extensions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.Brotli.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Compression.Brotli.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.IO.Compression.Brotli.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Compression.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.IO.Compression.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Compression.FileSystem.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.IO.Compression.FileSystem.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Compression.ZipFile.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.IO.Compression.ZipFile.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.IO.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.IO.FileSystem.AccessControl.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.FileSystem.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.IO.FileSystem.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.IO.FileSystem.DriveInfo.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.IO.FileSystem.Primitives.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.IO.FileSystem.Watcher.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.IsolatedStorage.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.IsolatedStorage.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.IO.IsolatedStorage.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.IO.MemoryMappedFiles.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipelines.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Pipelines.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/system.io.pipelines/6.0.3/lib/net6.0/System.IO.Pipelines.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.IO.Pipes.AccessControl.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Pipes.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.IO.Pipes.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.IO.UnmanagedMemoryStream.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Linq.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Linq.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Expressions.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Linq.Expressions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Linq.Expressions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Parallel.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Linq.Parallel.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Linq.Parallel.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Queryable.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Linq.Queryable.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Linq.Queryable.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Memory.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Memory.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Memory.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Net.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Http.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Net.Http.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.Json.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Http.Json.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Net.Http.Json.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.HttpListener.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.HttpListener.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Net.HttpListener.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Mail.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Mail.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Net.Mail.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.NameResolution.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.NameResolution.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Net.NameResolution.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.NetworkInformation.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.NetworkInformation.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Net.NetworkInformation.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Ping.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Ping.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Net.Ping.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Primitives.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Primitives.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Net.Primitives.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Quic.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Quic.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Net.Quic.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Requests.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Requests.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Net.Requests.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Security.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Security.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Net.Security.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.ServicePoint.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.ServicePoint.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Net.ServicePoint.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Sockets.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Sockets.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Net.Sockets.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebClient.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.WebClient.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Net.WebClient.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.WebHeaderCollection.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Net.WebHeaderCollection.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebProxy.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.WebProxy.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Net.WebProxy.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.Client.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.WebSockets.Client.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Net.WebSockets.Client.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.WebSockets.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Net.WebSockets.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Numerics.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Numerics.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.Vectors.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Numerics.Vectors.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Numerics.Vectors.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ObjectModel.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.ObjectModel.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.ObjectModel.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.CoreLib.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Private.CoreLib.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/native/System.Private.CoreLib.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.DataContractSerialization.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Private.DataContractSerialization.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Private.DataContractSerialization.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Runtime.InteropServices.JavaScript.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Private.Runtime.InteropServices.JavaScript.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Uri.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Private.Uri.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Private.Uri.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Private.Xml.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Private.Xml.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.Linq.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Private.Xml.Linq.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Private.Xml.Linq.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.DispatchProxy.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Reflection.DispatchProxy.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Reflection.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.Emit.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Reflection.Emit.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Reflection.Emit.ILGeneration.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Reflection.Emit.Lightweight.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Extensions.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.Extensions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Reflection.Extensions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Metadata.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.Metadata.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Reflection.Metadata.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Primitives.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.Primitives.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Reflection.Primitives.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.TypeExtensions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Reflection.TypeExtensions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Reader.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Resources.Reader.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Resources.Reader.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.ResourceManager.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Resources.ResourceManager.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Resources.ResourceManager.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Writer.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Resources.Writer.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Resources.Writer.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Runtime.CompilerServices.VisualC.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Runtime.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Extensions.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Extensions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Runtime.Extensions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Handles.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Handles.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Runtime.Handles.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.InteropServices.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Runtime.InteropServices.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Runtime.InteropServices.RuntimeInformation.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Intrinsics.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Intrinsics.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Runtime.Intrinsics.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Loader.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Loader.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Runtime.Loader.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Numerics.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Numerics.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Runtime.Numerics.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Serialization.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Runtime.Serialization.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Runtime.Serialization.Formatters.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Serialization.Json.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Runtime.Serialization.Json.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Runtime.Serialization.Primitives.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Runtime.Serialization.Xml.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.AccessControl.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Security.AccessControl.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Security.AccessControl.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Claims.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Claims.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Security.Claims.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Security.Cryptography.Algorithms.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.Cng.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Security.Cryptography.Cng.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.Csp.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Security.Cryptography.Csp.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Security.Cryptography.Encoding.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Security.Cryptography.OpenSsl.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Security.Cryptography.Primitives.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Security.Cryptography.X509Certificates.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Security.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Security.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Principal.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Security.Principal.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.Windows.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Principal.Windows.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Security.Principal.Windows.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.SecureString.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Security.SecureString.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Security.SecureString.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ServiceModel.Web.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.ServiceModel.Web.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.ServiceModel.Web.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ServiceProcess.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.ServiceProcess.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.ServiceProcess.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Text.Encoding.CodePages.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Text.Encoding.CodePages.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Text.Encoding.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Text.Encoding.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Text.Encoding.Extensions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Text.Encoding.Extensions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encodings.Web.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Text.Encodings.Web.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Text.Encodings.Web.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Json.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Text.Json.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Text.Json.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.RegularExpressions.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Text.RegularExpressions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Text.RegularExpressions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Channels.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Channels.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Threading.Channels.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Threading.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Overlapped.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Overlapped.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Threading.Overlapped.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Threading.Tasks.Dataflow.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Tasks.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Threading.Tasks.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Threading.Tasks.Extensions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Threading.Tasks.Parallel.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Thread.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Thread.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Threading.Thread.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.ThreadPool.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.ThreadPool.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Threading.ThreadPool.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Timer.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Timer.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Threading.Timer.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Transactions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Transactions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.Local.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Transactions.Local.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Transactions.Local.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ValueTuple.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.ValueTuple.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.ValueTuple.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Web.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Web.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Web.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Web.HttpUtility.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Web.HttpUtility.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Web.HttpUtility.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Windows.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Windows.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Windows.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Xml.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Linq.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.Linq.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Xml.Linq.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.ReaderWriter.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.ReaderWriter.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Xml.ReaderWriter.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Serialization.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.Serialization.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Xml.Serialization.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XDocument.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.XDocument.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Xml.XDocument.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlDocument.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.XmlDocument.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Xml.XmlDocument.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlSerializer.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.XmlSerializer.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Xml.XmlSerializer.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.XPath.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Xml.XPath.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.XPath.XDocument.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/System.Xml.XPath.XDocument.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/WindowsBase.dll", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/WindowsBase.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/runtimes/browser-wasm/lib/net6.0/WindowsBase.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/+2ZLXnU1.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Numerics.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/+5zAAppF.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Globalization.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/+8ir2EqM.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/+DhISid1.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/+eybwpsE.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Transactions.Local.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.Local.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.Local.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/+FnVEix6.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Runtime.InteropServices.JavaScript.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Runtime.InteropServices.JavaScript.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/+GAW7ng4.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Core.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Core.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Core.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/+hbvt+zz.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/+S+vpmjb.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Resources.Reader.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Reader.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Reader.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/+UJu3XHl.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Private.CoreLib.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.CoreLib.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.CoreLib.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/+w7YWWkg.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Serialization.Json.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/+XGOsjM8.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Data.DataSetExtensions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.DataSetExtensions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.DataSetExtensions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/0aw+2Bxa.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/0k5pxcbT.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Quic.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Quic.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Quic.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/0LDK0b+c.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.ServiceModel.Web.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ServiceModel.Web.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ServiceModel.Web.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/17gn4A+j.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/dotnet.timezones.blat.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.timezones.blat", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.timezones.blat" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/1UaZt5mD.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Drawing.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/1vm4IFaG.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/26gNfKbP.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.XmlSerializer.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlSerializer.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlSerializer.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/2Hj+3exQ.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Channels.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Channels.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Channels.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/2n+36BA3.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Tasks.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/2VNuPiDX.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.Contracts.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Contracts.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Contracts.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/3h7VFZey.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Text.Encoding.Extensions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/3kevzYbE.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Private.Xml.Linq.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.Linq.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.Linq.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/3madUA77.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/4FefMRN8.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/4KpKYfXr.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encodings.Web.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encodings.Web.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/4xtw6LPe.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/5bwqC54S.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Primitives.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Primitives.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Primitives.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/5gwUmMDS.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Mail.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Mail.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Mail.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/63kcE8QL.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Transactions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Transactions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/6K7a1sxg.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/6za3LhEM.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/79+eByEP.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/7JTnascI.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/mscorlib.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/mscorlib.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/mscorlib.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/8bVRGP9b.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/8e4i2wwq.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Text.Json.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Json.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Json.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/96shZgcq.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.Metadata.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Metadata.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Metadata.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/9pTSquT+.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Serialization.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/9V1RKqW+.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Security.AccessControl.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.AccessControl.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.AccessControl.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/aBQz+dWu.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.HttpListener.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.HttpListener.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.HttpListener.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/anvFXlrU.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.FileSystem.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/aoHC2mWj.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Collections.Immutable.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Immutable.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Immutable.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/aOY0XOpn.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Compression.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/axkDzPDg.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Security.SecureString.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.SecureString.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.SecureString.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/b2BTVfAd.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Linq.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/b3G7OKjk.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Ping.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Ping.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Ping.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/b403oJt4.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.Extensions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Extensions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Extensions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/bHQQUCCg.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/BP4YSYLo.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/BqYnQ2NX.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/BwBrIccx.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.NetworkInformation.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.NetworkInformation.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.NetworkInformation.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/cAPx3JXU.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.CSharp.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.CSharp.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.CSharp.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/cbo3yjvW.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Configuration.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Configuration.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Configuration.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/ceifEB1w.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/netstandard.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/netstandard.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/netstandard.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/cjbatWbD.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.WebProxy.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebProxy.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebProxy.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/cOMzoOae.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Principal.Windows.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.Windows.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.Windows.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/cPwvfED+.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Memory.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Memory.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Memory.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/cz8LMxh1.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/icudt_no_CJK.dat.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_no_CJK.dat", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_no_CJK.dat" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/d+cUeHq3.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/d65FhNAD.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.Process.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Process.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Process.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/DcYPHA+m.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Numerics.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Numerics.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Numerics.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/DExO9jJ+.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Claims.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Claims.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Claims.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/Dr+tX3qM.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.NonGeneric.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.NonGeneric.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/dwbJ+N1C.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Security.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Security.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Security.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/E+kJPdi4.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Compression.ZipFile.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/E98H+nSj.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Compression.Brotli.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.Brotli.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.Brotli.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/EmSAUKYY.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Dynamic.Runtime.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Dynamic.Runtime.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Dynamic.Runtime.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/EOhiOkXz.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.XmlDocument.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlDocument.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XmlDocument.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/EPqZK9Yz.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.ServiceProcess.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ServiceProcess.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ServiceProcess.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/ESlVORya.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/f620GeOq.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/FONcAOvJ.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.DispatchProxy.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/FYbG1Hpm.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/dotnet.wasm.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.wasm" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/GsqSnXSV.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Linq.Expressions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Expressions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Expressions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/GtnGYZZM.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Private.Uri.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Uri.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Uri.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/h+UT+DO+.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/h0IwZ7iM.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Debug.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Debug.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/hCWocqmQ.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/HEl9f72Y.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Timer.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Timer.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Timer.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/HOjRYT5U.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Numerics.Vectors.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.Vectors.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Numerics.Vectors.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/HpXdBeJg.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Win32.Primitives.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/intOU6Ee.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/iO4E0LGE.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/j++BdFv1.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/j5IDt85f.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.WebSockets.Client.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.Client.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.Client.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/j65auveW.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/CS_Todo.pdb.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/CS_Todo.pdb", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/CS_Todo.pdb" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/JA8D0SGk.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.Cng.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/jBCgESp2.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Pipes.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/jHF9V+Ta.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.AppContext.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.AppContext.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.AppContext.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/jryhAakP.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.Tools.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tools.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tools.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/JYfvtIIP.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Linq.Parallel.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Parallel.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Parallel.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/KfePmeIu.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Compression.FileSystem.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/KgAVvdsC.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Windows.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Windows.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Windows.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/kjMKg2YM.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/KryUQiny.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/KUwlVoQo.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/kycIWHwy.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.Linq.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Linq.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Linq.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/l6xNnSyK.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/lgksuMXI.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/LKuTbO7a.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/LMPANNez.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.Csp.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/lVbFtWoN.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.StackTrace.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/mKCm41GD.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/MKJYd23m.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Thread.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Thread.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Thread.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/mmYoYixw.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Resources.Writer.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Writer.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.Writer.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/MQ+2lKz6.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/MsN5Be+5.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/mtIVAx49.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Text.RegularExpressions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.RegularExpressions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.RegularExpressions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/n00ukSNx.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Security.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/N7TJtAYf.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/n88QEGkw.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.ComponentModel.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/nHabIDkI.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Primitives.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Primitives.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/nOj3qEby.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.Serialization.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Serialization.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.Serialization.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/nOlRkj37.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Collections.Specialized.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Specialized.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Specialized.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/noNMMJ3G.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/Np1LMJwu.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.InteropServices.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/NVAzqX0Y.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Loader.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Loader.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Loader.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/ob2sk5HN.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.XDocument.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XDocument.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XDocument.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/of87xl4N.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Data.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/Oiyb3P6J.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Collections.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/OY7PoISD.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Sockets.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Sockets.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Sockets.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/OYiTuEMW.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/Pa0u1erH.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Text.Encoding.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/pBYW4Ue+.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/pCOvjnOr.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Web.HttpUtility.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Web.HttpUtility.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Web.HttpUtility.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/PkhMudns.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Principal.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Principal.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/pnCUkTx+.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.ServicePoint.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.ServicePoint.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.ServicePoint.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/pzoY8bT8.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Globalization.Calendars.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Calendars.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Calendars.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/qkJbfahn.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/icudt.dat.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt.dat", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt.dat" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/QnfvO+Vg.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.XPath.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/quOPeWPN.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.ResourceManager.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Resources.ResourceManager.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/QW72x0Cq.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/QXH+vF2t.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/qYP+lIjq.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.WebSockets.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebSockets.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/RADkxc0W.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.XPath.XDocument.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/RLnl5TVX.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Text.Encoding.CodePages.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/RWEsCFuw.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Handles.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Handles.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Handles.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/s81a9R4o.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Data.Common.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.Common.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Data.Common.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/sEa7XXf0.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/Sg3XLFkl.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Overlapped.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Overlapped.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Overlapped.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/SLQpa4WU.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Primitives.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Primitives.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/SOfTcj6e.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/blazor.webassembly.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/blazor.webassembly.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/blazor.webassembly.js" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/tGEW6puy.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.IsolatedStorage.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.IsolatedStorage.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.IsolatedStorage.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/TiU9jybf.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/dotnet.6.0.5.itaht6zf1c.js.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.6.0.5.itaht6zf1c.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/dotnet.6.0.5.itaht6zf1c.js" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/TjQsKJ7P.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Console.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Console.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Console.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/tjua794V.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.NameResolution.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.NameResolution.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.NameResolution.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/tKvYdTQx.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Pipelines.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipelines.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipelines.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/TV9E4gLb.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Http.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/U0Cx4Ted.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/icudt_CJK.dat.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_CJK.dat", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_CJK.dat" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/U1GjwWQV.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Options.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Options.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/uCZHf1y+.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/ueQWGjdD.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/UTD5E2ng.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/UYaQnQMN.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/UziCi+WY.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/UZpmVZp+.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tracing.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.Tracing.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/v0FnAjj8.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.WebClient.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebClient.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebClient.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/V9nJZSNV.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/vaxoCzlT.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/VfK8l1Sx.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/vFpanVH5.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Buffers.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Buffers.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Buffers.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/vFrglExZ.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/vjE2loZs.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/vk+ovbKo.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Private.DataContractSerialization.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.DataContractSerialization.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.DataContractSerialization.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/vnbfyRHw.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/CS_Todo.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/CS_Todo.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/CS_Todo.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/w+a9Z7nc.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Annotations.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.Annotations.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/w431ewEn.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/icudt_EFIGS.dat.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_EFIGS.dat", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/icudt_EFIGS.dat" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/w6ge0Ss3.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.VisualBasic.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.VisualBasic.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/WA0wuQkK.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Globalization.Extensions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Extensions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Globalization.Extensions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/wGx4Jo6k.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Http.Json.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.Json.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Http.Json.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/WMNt4GKI.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.TraceSource.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/WQfckDy2.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/wrRolEjk.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/WUBNxRri.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.ThreadPool.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Threading.ThreadPool.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/XeYKC2py.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Linq.Queryable.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Queryable.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Linq.Queryable.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/xmiwABxn.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/xRo0Gl9i.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/WindowsBase.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/WindowsBase.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/WindowsBase.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/xyLuRHNu.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Private.Xml.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Private.Xml.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/Y4M8Plae.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.Emit.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.Emit.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/y6glL3Qd.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Extensions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Extensions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/y8lYbkJi.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Win32.Registry.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Registry.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Win32.Registry.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/YDvclHMg.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.ValueTuple.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ValueTuple.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ValueTuple.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/Ygb5TvsW.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/YhOfo1DZ.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Requests.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Requests.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.Requests.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/YMW+BE0p.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.TypeExtensions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/YOMdCEDS.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/YpqlEPw9.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/YQkYcbEI.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Concurrent.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Collections.Concurrent.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/yQuw3LXW.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Formats.Asn1.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Formats.Asn1.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Formats.Asn1.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/Yqw4dse1.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.ReaderWriter.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.ReaderWriter.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Xml.ReaderWriter.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/yVKdSxvd.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/Z1BthFgm.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Web.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Web.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Web.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/Z3OzKbMB.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Drawing.Primitives.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.Primitives.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Drawing.Primitives.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/Z5DZehAu.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/zJ20I4Av.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Net.WebHeaderCollection.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/ZlkXkYAk.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/ZNKwyHY+.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Intrinsics.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Intrinsics.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.Runtime.Intrinsics.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/build-gz/ZyKi4OGE.gz", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/", + "BasePath": "/", + "RelativePath": "_framework/System.ObjectModel.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ObjectModel.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/_framework/System.ObjectModel.dll" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/scopedcss/bundle/CS_Todo.styles.css", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/scopedcss/bundle/", + "BasePath": "/", + "RelativePath": "CS_Todo.styles.css", + "AssetKind": "All", + "AssetMode": "CurrentProject", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "ScopedCss", + "AssetTraitValue": "ApplicationBundle", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/scopedcss/bundle/CS_Todo.styles.css" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/scopedcss/projectbundle/CS_Todo.bundle.scp.css", + "SourceId": "CS_Todo", + "SourceType": "Computed", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/scopedcss/projectbundle/", + "BasePath": "/", + "RelativePath": "CS_Todo.bundle.scp.css", + "AssetKind": "All", + "AssetMode": "Reference", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "ScopedCss", + "AssetTraitValue": "ProjectBundle", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/scopedcss/projectbundle/CS_Todo.bundle.scp.css" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/css/app.css", + "SourceId": "CS_Todo", + "SourceType": "Discovered", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/", + "BasePath": "/", + "RelativePath": "css/app.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/css/app.css" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/css/bootstrap/bootstrap.min.css", + "SourceId": "CS_Todo", + "SourceType": "Discovered", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/", + "BasePath": "/", + "RelativePath": "css/bootstrap/bootstrap.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/css/bootstrap/bootstrap.min.css" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/css/bootstrap/bootstrap.min.css.map", + "SourceId": "CS_Todo", + "SourceType": "Discovered", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/", + "BasePath": "/", + "RelativePath": "css/bootstrap/bootstrap.min.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/css/bootstrap/bootstrap.min.css.map" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/css/open-iconic/FONT-LICENSE", + "SourceId": "CS_Todo", + "SourceType": "Discovered", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/", + "BasePath": "/", + "RelativePath": "css/open-iconic/FONT-LICENSE", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/css/open-iconic/FONT-LICENSE" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css", + "SourceId": "CS_Todo", + "SourceType": "Discovered", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/", + "BasePath": "/", + "RelativePath": "css/open-iconic/font/css/open-iconic-bootstrap.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/css/open-iconic/font/fonts/open-iconic.eot", + "SourceId": "CS_Todo", + "SourceType": "Discovered", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/", + "BasePath": "/", + "RelativePath": "css/open-iconic/font/fonts/open-iconic.eot", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/css/open-iconic/font/fonts/open-iconic.eot" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/css/open-iconic/font/fonts/open-iconic.otf", + "SourceId": "CS_Todo", + "SourceType": "Discovered", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/", + "BasePath": "/", + "RelativePath": "css/open-iconic/font/fonts/open-iconic.otf", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/css/open-iconic/font/fonts/open-iconic.otf" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/css/open-iconic/font/fonts/open-iconic.svg", + "SourceId": "CS_Todo", + "SourceType": "Discovered", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/", + "BasePath": "/", + "RelativePath": "css/open-iconic/font/fonts/open-iconic.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/css/open-iconic/font/fonts/open-iconic.svg" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf", + "SourceId": "CS_Todo", + "SourceType": "Discovered", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/", + "BasePath": "/", + "RelativePath": "css/open-iconic/font/fonts/open-iconic.ttf", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/css/open-iconic/font/fonts/open-iconic.ttf" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/css/open-iconic/font/fonts/open-iconic.woff", + "SourceId": "CS_Todo", + "SourceType": "Discovered", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/", + "BasePath": "/", + "RelativePath": "css/open-iconic/font/fonts/open-iconic.woff", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/css/open-iconic/font/fonts/open-iconic.woff" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/css/open-iconic/ICON-LICENSE", + "SourceId": "CS_Todo", + "SourceType": "Discovered", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/", + "BasePath": "/", + "RelativePath": "css/open-iconic/ICON-LICENSE", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/css/open-iconic/ICON-LICENSE" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/css/open-iconic/README.md", + "SourceId": "CS_Todo", + "SourceType": "Discovered", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/", + "BasePath": "/", + "RelativePath": "css/open-iconic/README.md", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/css/open-iconic/README.md" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/favicon.ico", + "SourceId": "CS_Todo", + "SourceType": "Discovered", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/", + "BasePath": "/", + "RelativePath": "favicon.ico", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/favicon.ico" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/icon-192.png", + "SourceId": "CS_Todo", + "SourceType": "Discovered", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/", + "BasePath": "/", + "RelativePath": "icon-192.png", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/icon-192.png" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/index.html", + "SourceId": "CS_Todo", + "SourceType": "Discovered", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/", + "BasePath": "/", + "RelativePath": "index.html", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/index.html" + }, + { + "Identity": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/sample-data/weather.json", + "SourceId": "CS_Todo", + "SourceType": "Discovered", + "ContentRoot": "/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/", + "BasePath": "/", + "RelativePath": "sample-data/weather.json", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot/sample-data/weather.json" + } + ] +} \ No newline at end of file diff --git a/CS_Todo/obj/Debug/net6.0/staticwebassets.development.json b/CS_Todo/obj/Debug/net6.0/staticwebassets.development.json new file mode 100644 index 00000000..90f255f4 --- /dev/null +++ b/CS_Todo/obj/Debug/net6.0/staticwebassets.development.json @@ -0,0 +1 @@ +{"ContentRoots":["/Users/normrasmussen/Documents/Northpass/CS_Todo/wwwroot/","/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/Debug/net6.0/scopedcss/bundle/","/Users/normrasmussen/Documents/Northpass/CS_Todo/bin/Debug/net6.0/wwwroot/"],"Root":{"Children":{"css":{"Children":{"app.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/app.css"},"Patterns":null},"bootstrap":{"Children":{"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"open-iconic":{"Children":{"FONT-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/FONT-LICENSE"},"Patterns":null},"font":{"Children":{"css":{"Children":{"open-iconic-bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/css/open-iconic-bootstrap.min.css"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"open-iconic.eot":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.eot"},"Patterns":null},"open-iconic.otf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.otf"},"Patterns":null},"open-iconic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.svg"},"Patterns":null},"open-iconic.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.ttf"},"Patterns":null},"open-iconic.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.woff"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"ICON-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/ICON-LICENSE"},"Patterns":null},"README.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/README.md"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"icon-192.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"icon-192.png"},"Patterns":null},"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null},"sample-data":{"Children":{"weather.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"sample-data/weather.json"},"Patterns":null}},"Asset":null,"Patterns":null},"CS_Todo.styles.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"CS_Todo.styles.css"},"Patterns":null},"_framework":{"Children":{"Microsoft.AspNetCore.Authorization.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.AspNetCore.Authorization.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.AspNetCore.Components.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.Forms.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.AspNetCore.Components.Forms.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.Web.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.AspNetCore.Components.Web.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.AspNetCore.Components.WebAssembly.dll"},"Patterns":null},"Microsoft.AspNetCore.Metadata.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.AspNetCore.Metadata.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Configuration.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Configuration.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.Binder.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Configuration.Binder.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.FileExtensions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Configuration.FileExtensions.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Configuration.Json.dll"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.dll"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.FileProviders.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.FileProviders.Physical.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Physical.dll"},"Patterns":null},"Microsoft.Extensions.FileSystemGlobbing.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.FileSystemGlobbing.dll"},"Patterns":null},"Microsoft.Extensions.Logging.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Logging.dll"},"Patterns":null},"Microsoft.Extensions.Logging.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Logging.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.Options.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Options.dll"},"Patterns":null},"Microsoft.Extensions.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Primitives.dll"},"Patterns":null},"Microsoft.JSInterop.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.JSInterop.dll"},"Patterns":null},"Microsoft.JSInterop.WebAssembly.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.JSInterop.WebAssembly.dll"},"Patterns":null},"System.IO.Pipelines.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.Pipelines.dll"},"Patterns":null},"Microsoft.CSharp.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.CSharp.dll"},"Patterns":null},"Microsoft.VisualBasic.Core.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.VisualBasic.Core.dll"},"Patterns":null},"Microsoft.VisualBasic.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.VisualBasic.dll"},"Patterns":null},"Microsoft.Win32.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Win32.Primitives.dll"},"Patterns":null},"Microsoft.Win32.Registry.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Win32.Registry.dll"},"Patterns":null},"System.AppContext.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.AppContext.dll"},"Patterns":null},"System.Buffers.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Buffers.dll"},"Patterns":null},"System.Collections.Concurrent.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Collections.Concurrent.dll"},"Patterns":null},"System.Collections.Immutable.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Collections.Immutable.dll"},"Patterns":null},"System.Collections.NonGeneric.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Collections.NonGeneric.dll"},"Patterns":null},"System.Collections.Specialized.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Collections.Specialized.dll"},"Patterns":null},"System.Collections.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Collections.dll"},"Patterns":null},"System.ComponentModel.Annotations.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ComponentModel.Annotations.dll"},"Patterns":null},"System.ComponentModel.DataAnnotations.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ComponentModel.DataAnnotations.dll"},"Patterns":null},"System.ComponentModel.EventBasedAsync.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ComponentModel.EventBasedAsync.dll"},"Patterns":null},"System.ComponentModel.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ComponentModel.Primitives.dll"},"Patterns":null},"System.ComponentModel.TypeConverter.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ComponentModel.TypeConverter.dll"},"Patterns":null},"System.ComponentModel.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ComponentModel.dll"},"Patterns":null},"System.Configuration.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Configuration.dll"},"Patterns":null},"System.Console.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Console.dll"},"Patterns":null},"System.Core.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Core.dll"},"Patterns":null},"System.Data.Common.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Data.Common.dll"},"Patterns":null},"System.Data.DataSetExtensions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Data.DataSetExtensions.dll"},"Patterns":null},"System.Data.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Data.dll"},"Patterns":null},"System.Diagnostics.Contracts.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.Contracts.dll"},"Patterns":null},"System.Diagnostics.Debug.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.Debug.dll"},"Patterns":null},"System.Diagnostics.DiagnosticSource.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.DiagnosticSource.dll"},"Patterns":null},"System.Diagnostics.FileVersionInfo.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.FileVersionInfo.dll"},"Patterns":null},"System.Diagnostics.Process.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.Process.dll"},"Patterns":null},"System.Diagnostics.StackTrace.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.StackTrace.dll"},"Patterns":null},"System.Diagnostics.TextWriterTraceListener.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.TextWriterTraceListener.dll"},"Patterns":null},"System.Diagnostics.Tools.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.Tools.dll"},"Patterns":null},"System.Diagnostics.TraceSource.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.TraceSource.dll"},"Patterns":null},"System.Diagnostics.Tracing.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.Tracing.dll"},"Patterns":null},"System.Drawing.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Drawing.Primitives.dll"},"Patterns":null},"System.Drawing.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Drawing.dll"},"Patterns":null},"System.Dynamic.Runtime.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Dynamic.Runtime.dll"},"Patterns":null},"System.Formats.Asn1.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Formats.Asn1.dll"},"Patterns":null},"System.Globalization.Calendars.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Globalization.Calendars.dll"},"Patterns":null},"System.Globalization.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Globalization.Extensions.dll"},"Patterns":null},"System.Globalization.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Globalization.dll"},"Patterns":null},"System.IO.Compression.Brotli.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.Compression.Brotli.dll"},"Patterns":null},"System.IO.Compression.FileSystem.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.Compression.FileSystem.dll"},"Patterns":null},"System.IO.Compression.ZipFile.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.Compression.ZipFile.dll"},"Patterns":null},"System.IO.Compression.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.Compression.dll"},"Patterns":null},"System.IO.FileSystem.AccessControl.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.FileSystem.AccessControl.dll"},"Patterns":null},"System.IO.FileSystem.DriveInfo.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.FileSystem.DriveInfo.dll"},"Patterns":null},"System.IO.FileSystem.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.FileSystem.Primitives.dll"},"Patterns":null},"System.IO.FileSystem.Watcher.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.FileSystem.Watcher.dll"},"Patterns":null},"System.IO.FileSystem.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.FileSystem.dll"},"Patterns":null},"System.IO.IsolatedStorage.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.IsolatedStorage.dll"},"Patterns":null},"System.IO.MemoryMappedFiles.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.MemoryMappedFiles.dll"},"Patterns":null},"System.IO.Pipes.AccessControl.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.Pipes.AccessControl.dll"},"Patterns":null},"System.IO.Pipes.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.Pipes.dll"},"Patterns":null},"System.IO.UnmanagedMemoryStream.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.UnmanagedMemoryStream.dll"},"Patterns":null},"System.IO.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.dll"},"Patterns":null},"System.Linq.Expressions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Linq.Expressions.dll"},"Patterns":null},"System.Linq.Parallel.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Linq.Parallel.dll"},"Patterns":null},"System.Linq.Queryable.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Linq.Queryable.dll"},"Patterns":null},"System.Linq.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Linq.dll"},"Patterns":null},"System.Memory.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Memory.dll"},"Patterns":null},"System.Net.Http.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Http.Json.dll"},"Patterns":null},"System.Net.Http.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Http.dll"},"Patterns":null},"System.Net.HttpListener.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.HttpListener.dll"},"Patterns":null},"System.Net.Mail.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Mail.dll"},"Patterns":null},"System.Net.NameResolution.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.NameResolution.dll"},"Patterns":null},"System.Net.NetworkInformation.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.NetworkInformation.dll"},"Patterns":null},"System.Net.Ping.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Ping.dll"},"Patterns":null},"System.Net.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Primitives.dll"},"Patterns":null},"System.Net.Quic.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Quic.dll"},"Patterns":null},"System.Net.Requests.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Requests.dll"},"Patterns":null},"System.Net.Security.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Security.dll"},"Patterns":null},"System.Net.ServicePoint.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.ServicePoint.dll"},"Patterns":null},"System.Net.Sockets.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Sockets.dll"},"Patterns":null},"System.Net.WebClient.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.WebClient.dll"},"Patterns":null},"System.Net.WebHeaderCollection.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.WebHeaderCollection.dll"},"Patterns":null},"System.Net.WebProxy.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.WebProxy.dll"},"Patterns":null},"System.Net.WebSockets.Client.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.WebSockets.Client.dll"},"Patterns":null},"System.Net.WebSockets.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.WebSockets.dll"},"Patterns":null},"System.Net.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.dll"},"Patterns":null},"System.Numerics.Vectors.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Numerics.Vectors.dll"},"Patterns":null},"System.Numerics.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Numerics.dll"},"Patterns":null},"System.ObjectModel.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ObjectModel.dll"},"Patterns":null},"System.Private.DataContractSerialization.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Private.DataContractSerialization.dll"},"Patterns":null},"System.Private.Runtime.InteropServices.JavaScript.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Private.Runtime.InteropServices.JavaScript.dll"},"Patterns":null},"System.Private.Uri.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Private.Uri.dll"},"Patterns":null},"System.Private.Xml.Linq.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Private.Xml.Linq.dll"},"Patterns":null},"System.Private.Xml.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Private.Xml.dll"},"Patterns":null},"System.Reflection.DispatchProxy.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.DispatchProxy.dll"},"Patterns":null},"System.Reflection.Emit.ILGeneration.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.Emit.ILGeneration.dll"},"Patterns":null},"System.Reflection.Emit.Lightweight.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.Emit.Lightweight.dll"},"Patterns":null},"System.Reflection.Emit.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.Emit.dll"},"Patterns":null},"System.Reflection.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.Extensions.dll"},"Patterns":null},"System.Reflection.Metadata.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.Metadata.dll"},"Patterns":null},"System.Reflection.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.Primitives.dll"},"Patterns":null},"System.Reflection.TypeExtensions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.TypeExtensions.dll"},"Patterns":null},"System.Reflection.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.dll"},"Patterns":null},"System.Resources.Reader.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Resources.Reader.dll"},"Patterns":null},"System.Resources.ResourceManager.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Resources.ResourceManager.dll"},"Patterns":null},"System.Resources.Writer.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Resources.Writer.dll"},"Patterns":null},"System.Runtime.CompilerServices.Unsafe.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.CompilerServices.Unsafe.dll"},"Patterns":null},"System.Runtime.CompilerServices.VisualC.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.CompilerServices.VisualC.dll"},"Patterns":null},"System.Runtime.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Extensions.dll"},"Patterns":null},"System.Runtime.Handles.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Handles.dll"},"Patterns":null},"System.Runtime.InteropServices.RuntimeInformation.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.InteropServices.RuntimeInformation.dll"},"Patterns":null},"System.Runtime.InteropServices.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.InteropServices.dll"},"Patterns":null},"System.Runtime.Intrinsics.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Intrinsics.dll"},"Patterns":null},"System.Runtime.Loader.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Loader.dll"},"Patterns":null},"System.Runtime.Numerics.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Numerics.dll"},"Patterns":null},"System.Runtime.Serialization.Formatters.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Serialization.Formatters.dll"},"Patterns":null},"System.Runtime.Serialization.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Serialization.Json.dll"},"Patterns":null},"System.Runtime.Serialization.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Serialization.Primitives.dll"},"Patterns":null},"System.Runtime.Serialization.Xml.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Serialization.Xml.dll"},"Patterns":null},"System.Runtime.Serialization.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Serialization.dll"},"Patterns":null},"System.Runtime.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.dll"},"Patterns":null},"System.Security.AccessControl.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.AccessControl.dll"},"Patterns":null},"System.Security.Claims.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Claims.dll"},"Patterns":null},"System.Security.Cryptography.Algorithms.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Cryptography.Algorithms.dll"},"Patterns":null},"System.Security.Cryptography.Cng.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Cryptography.Cng.dll"},"Patterns":null},"System.Security.Cryptography.Csp.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Cryptography.Csp.dll"},"Patterns":null},"System.Security.Cryptography.Encoding.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Cryptography.Encoding.dll"},"Patterns":null},"System.Security.Cryptography.OpenSsl.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Cryptography.OpenSsl.dll"},"Patterns":null},"System.Security.Cryptography.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Cryptography.Primitives.dll"},"Patterns":null},"System.Security.Cryptography.X509Certificates.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Cryptography.X509Certificates.dll"},"Patterns":null},"System.Security.Principal.Windows.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Principal.Windows.dll"},"Patterns":null},"System.Security.Principal.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Principal.dll"},"Patterns":null},"System.Security.SecureString.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.SecureString.dll"},"Patterns":null},"System.Security.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.dll"},"Patterns":null},"System.ServiceModel.Web.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ServiceModel.Web.dll"},"Patterns":null},"System.ServiceProcess.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ServiceProcess.dll"},"Patterns":null},"System.Text.Encoding.CodePages.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Text.Encoding.CodePages.dll"},"Patterns":null},"System.Text.Encoding.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Text.Encoding.Extensions.dll"},"Patterns":null},"System.Text.Encoding.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Text.Encoding.dll"},"Patterns":null},"System.Text.Encodings.Web.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Text.Encodings.Web.dll"},"Patterns":null},"System.Text.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Text.Json.dll"},"Patterns":null},"System.Text.RegularExpressions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Text.RegularExpressions.dll"},"Patterns":null},"System.Threading.Channels.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Channels.dll"},"Patterns":null},"System.Threading.Overlapped.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Overlapped.dll"},"Patterns":null},"System.Threading.Tasks.Dataflow.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Tasks.Dataflow.dll"},"Patterns":null},"System.Threading.Tasks.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Tasks.Extensions.dll"},"Patterns":null},"System.Threading.Tasks.Parallel.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Tasks.Parallel.dll"},"Patterns":null},"System.Threading.Tasks.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Tasks.dll"},"Patterns":null},"System.Threading.Thread.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Thread.dll"},"Patterns":null},"System.Threading.ThreadPool.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.ThreadPool.dll"},"Patterns":null},"System.Threading.Timer.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Timer.dll"},"Patterns":null},"System.Threading.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.dll"},"Patterns":null},"System.Transactions.Local.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Transactions.Local.dll"},"Patterns":null},"System.Transactions.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Transactions.dll"},"Patterns":null},"System.ValueTuple.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ValueTuple.dll"},"Patterns":null},"System.Web.HttpUtility.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Web.HttpUtility.dll"},"Patterns":null},"System.Web.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Web.dll"},"Patterns":null},"System.Windows.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Windows.dll"},"Patterns":null},"System.Xml.Linq.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.Linq.dll"},"Patterns":null},"System.Xml.ReaderWriter.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.ReaderWriter.dll"},"Patterns":null},"System.Xml.Serialization.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.Serialization.dll"},"Patterns":null},"System.Xml.XDocument.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.XDocument.dll"},"Patterns":null},"System.Xml.XPath.XDocument.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.XPath.XDocument.dll"},"Patterns":null},"System.Xml.XPath.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.XPath.dll"},"Patterns":null},"System.Xml.XmlDocument.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.XmlDocument.dll"},"Patterns":null},"System.Xml.XmlSerializer.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.XmlSerializer.dll"},"Patterns":null},"System.Xml.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.dll"},"Patterns":null},"System.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.dll"},"Patterns":null},"WindowsBase.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/WindowsBase.dll"},"Patterns":null},"mscorlib.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/mscorlib.dll"},"Patterns":null},"netstandard.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/netstandard.dll"},"Patterns":null},"System.Private.CoreLib.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Private.CoreLib.dll"},"Patterns":null},"dotnet.6.0.5.itaht6zf1c.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/dotnet.6.0.5.itaht6zf1c.js"},"Patterns":null},"dotnet.timezones.blat":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/dotnet.timezones.blat"},"Patterns":null},"dotnet.wasm":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/dotnet.wasm"},"Patterns":null},"icudt.dat":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/icudt.dat"},"Patterns":null},"icudt_CJK.dat":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/icudt_CJK.dat"},"Patterns":null},"icudt_EFIGS.dat":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/icudt_EFIGS.dat"},"Patterns":null},"icudt_no_CJK.dat":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/icudt_no_CJK.dat"},"Patterns":null},"CS_Todo.dll":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/CS_Todo.dll"},"Patterns":null},"CS_Todo.pdb":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/CS_Todo.pdb"},"Patterns":null},"blazor.webassembly.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/blazor.webassembly.js"},"Patterns":null},"Microsoft.AspNetCore.Authorization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.AspNetCore.Authorization.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.AspNetCore.Components.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.Forms.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.AspNetCore.Components.Forms.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.Web.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.AspNetCore.Components.Web.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Metadata.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.AspNetCore.Metadata.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Configuration.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Binder.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Configuration.Binder.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.FileExtensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Configuration.Json.dll.gz"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.dll.gz"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.FileProviders.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.FileProviders.Physical.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz"},"Patterns":null},"Microsoft.Extensions.FileSystemGlobbing.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz"},"Patterns":null},"Microsoft.Extensions.Logging.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Logging.dll.gz"},"Patterns":null},"Microsoft.Extensions.Logging.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.Options.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Options.dll.gz"},"Patterns":null},"Microsoft.Extensions.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Extensions.Primitives.dll.gz"},"Patterns":null},"Microsoft.JSInterop.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.JSInterop.dll.gz"},"Patterns":null},"Microsoft.JSInterop.WebAssembly.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.JSInterop.WebAssembly.dll.gz"},"Patterns":null},"System.IO.Pipelines.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.Pipelines.dll.gz"},"Patterns":null},"Microsoft.CSharp.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.CSharp.dll.gz"},"Patterns":null},"Microsoft.VisualBasic.Core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.VisualBasic.Core.dll.gz"},"Patterns":null},"Microsoft.VisualBasic.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.VisualBasic.dll.gz"},"Patterns":null},"Microsoft.Win32.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Win32.Primitives.dll.gz"},"Patterns":null},"Microsoft.Win32.Registry.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/Microsoft.Win32.Registry.dll.gz"},"Patterns":null},"System.AppContext.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.AppContext.dll.gz"},"Patterns":null},"System.Buffers.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Buffers.dll.gz"},"Patterns":null},"System.Collections.Concurrent.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Collections.Concurrent.dll.gz"},"Patterns":null},"System.Collections.Immutable.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Collections.Immutable.dll.gz"},"Patterns":null},"System.Collections.NonGeneric.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Collections.NonGeneric.dll.gz"},"Patterns":null},"System.Collections.Specialized.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Collections.Specialized.dll.gz"},"Patterns":null},"System.Collections.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Collections.dll.gz"},"Patterns":null},"System.ComponentModel.Annotations.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ComponentModel.Annotations.dll.gz"},"Patterns":null},"System.ComponentModel.DataAnnotations.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ComponentModel.DataAnnotations.dll.gz"},"Patterns":null},"System.ComponentModel.EventBasedAsync.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ComponentModel.EventBasedAsync.dll.gz"},"Patterns":null},"System.ComponentModel.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ComponentModel.Primitives.dll.gz"},"Patterns":null},"System.ComponentModel.TypeConverter.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ComponentModel.TypeConverter.dll.gz"},"Patterns":null},"System.ComponentModel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ComponentModel.dll.gz"},"Patterns":null},"System.Configuration.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Configuration.dll.gz"},"Patterns":null},"System.Console.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Console.dll.gz"},"Patterns":null},"System.Core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Core.dll.gz"},"Patterns":null},"System.Data.Common.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Data.Common.dll.gz"},"Patterns":null},"System.Data.DataSetExtensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Data.DataSetExtensions.dll.gz"},"Patterns":null},"System.Data.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Data.dll.gz"},"Patterns":null},"System.Diagnostics.Contracts.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.Contracts.dll.gz"},"Patterns":null},"System.Diagnostics.Debug.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.Debug.dll.gz"},"Patterns":null},"System.Diagnostics.DiagnosticSource.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.DiagnosticSource.dll.gz"},"Patterns":null},"System.Diagnostics.FileVersionInfo.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.FileVersionInfo.dll.gz"},"Patterns":null},"System.Diagnostics.Process.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.Process.dll.gz"},"Patterns":null},"System.Diagnostics.StackTrace.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.StackTrace.dll.gz"},"Patterns":null},"System.Diagnostics.TextWriterTraceListener.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.TextWriterTraceListener.dll.gz"},"Patterns":null},"System.Diagnostics.Tools.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.Tools.dll.gz"},"Patterns":null},"System.Diagnostics.TraceSource.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.TraceSource.dll.gz"},"Patterns":null},"System.Diagnostics.Tracing.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Diagnostics.Tracing.dll.gz"},"Patterns":null},"System.Drawing.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Drawing.Primitives.dll.gz"},"Patterns":null},"System.Drawing.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Drawing.dll.gz"},"Patterns":null},"System.Dynamic.Runtime.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Dynamic.Runtime.dll.gz"},"Patterns":null},"System.Formats.Asn1.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Formats.Asn1.dll.gz"},"Patterns":null},"System.Globalization.Calendars.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Globalization.Calendars.dll.gz"},"Patterns":null},"System.Globalization.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Globalization.Extensions.dll.gz"},"Patterns":null},"System.Globalization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Globalization.dll.gz"},"Patterns":null},"System.IO.Compression.Brotli.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.Compression.Brotli.dll.gz"},"Patterns":null},"System.IO.Compression.FileSystem.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.Compression.FileSystem.dll.gz"},"Patterns":null},"System.IO.Compression.ZipFile.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.Compression.ZipFile.dll.gz"},"Patterns":null},"System.IO.Compression.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.Compression.dll.gz"},"Patterns":null},"System.IO.FileSystem.AccessControl.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.FileSystem.AccessControl.dll.gz"},"Patterns":null},"System.IO.FileSystem.DriveInfo.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.FileSystem.DriveInfo.dll.gz"},"Patterns":null},"System.IO.FileSystem.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.FileSystem.Primitives.dll.gz"},"Patterns":null},"System.IO.FileSystem.Watcher.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.FileSystem.Watcher.dll.gz"},"Patterns":null},"System.IO.FileSystem.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.FileSystem.dll.gz"},"Patterns":null},"System.IO.IsolatedStorage.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.IsolatedStorage.dll.gz"},"Patterns":null},"System.IO.MemoryMappedFiles.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.MemoryMappedFiles.dll.gz"},"Patterns":null},"System.IO.Pipes.AccessControl.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.Pipes.AccessControl.dll.gz"},"Patterns":null},"System.IO.Pipes.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.Pipes.dll.gz"},"Patterns":null},"System.IO.UnmanagedMemoryStream.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.UnmanagedMemoryStream.dll.gz"},"Patterns":null},"System.IO.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.IO.dll.gz"},"Patterns":null},"System.Linq.Expressions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Linq.Expressions.dll.gz"},"Patterns":null},"System.Linq.Parallel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Linq.Parallel.dll.gz"},"Patterns":null},"System.Linq.Queryable.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Linq.Queryable.dll.gz"},"Patterns":null},"System.Linq.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Linq.dll.gz"},"Patterns":null},"System.Memory.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Memory.dll.gz"},"Patterns":null},"System.Net.Http.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Http.Json.dll.gz"},"Patterns":null},"System.Net.Http.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Http.dll.gz"},"Patterns":null},"System.Net.HttpListener.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.HttpListener.dll.gz"},"Patterns":null},"System.Net.Mail.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Mail.dll.gz"},"Patterns":null},"System.Net.NameResolution.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.NameResolution.dll.gz"},"Patterns":null},"System.Net.NetworkInformation.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.NetworkInformation.dll.gz"},"Patterns":null},"System.Net.Ping.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Ping.dll.gz"},"Patterns":null},"System.Net.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Primitives.dll.gz"},"Patterns":null},"System.Net.Quic.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Quic.dll.gz"},"Patterns":null},"System.Net.Requests.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Requests.dll.gz"},"Patterns":null},"System.Net.Security.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Security.dll.gz"},"Patterns":null},"System.Net.ServicePoint.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.ServicePoint.dll.gz"},"Patterns":null},"System.Net.Sockets.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.Sockets.dll.gz"},"Patterns":null},"System.Net.WebClient.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.WebClient.dll.gz"},"Patterns":null},"System.Net.WebHeaderCollection.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.WebHeaderCollection.dll.gz"},"Patterns":null},"System.Net.WebProxy.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.WebProxy.dll.gz"},"Patterns":null},"System.Net.WebSockets.Client.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.WebSockets.Client.dll.gz"},"Patterns":null},"System.Net.WebSockets.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.WebSockets.dll.gz"},"Patterns":null},"System.Net.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Net.dll.gz"},"Patterns":null},"System.Numerics.Vectors.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Numerics.Vectors.dll.gz"},"Patterns":null},"System.Numerics.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Numerics.dll.gz"},"Patterns":null},"System.ObjectModel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ObjectModel.dll.gz"},"Patterns":null},"System.Private.DataContractSerialization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Private.DataContractSerialization.dll.gz"},"Patterns":null},"System.Private.Runtime.InteropServices.JavaScript.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz"},"Patterns":null},"System.Private.Uri.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Private.Uri.dll.gz"},"Patterns":null},"System.Private.Xml.Linq.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Private.Xml.Linq.dll.gz"},"Patterns":null},"System.Private.Xml.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Private.Xml.dll.gz"},"Patterns":null},"System.Reflection.DispatchProxy.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.DispatchProxy.dll.gz"},"Patterns":null},"System.Reflection.Emit.ILGeneration.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.Emit.ILGeneration.dll.gz"},"Patterns":null},"System.Reflection.Emit.Lightweight.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.Emit.Lightweight.dll.gz"},"Patterns":null},"System.Reflection.Emit.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.Emit.dll.gz"},"Patterns":null},"System.Reflection.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.Extensions.dll.gz"},"Patterns":null},"System.Reflection.Metadata.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.Metadata.dll.gz"},"Patterns":null},"System.Reflection.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.Primitives.dll.gz"},"Patterns":null},"System.Reflection.TypeExtensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.TypeExtensions.dll.gz"},"Patterns":null},"System.Reflection.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Reflection.dll.gz"},"Patterns":null},"System.Resources.Reader.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Resources.Reader.dll.gz"},"Patterns":null},"System.Resources.ResourceManager.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Resources.ResourceManager.dll.gz"},"Patterns":null},"System.Resources.Writer.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Resources.Writer.dll.gz"},"Patterns":null},"System.Runtime.CompilerServices.Unsafe.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.CompilerServices.Unsafe.dll.gz"},"Patterns":null},"System.Runtime.CompilerServices.VisualC.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.CompilerServices.VisualC.dll.gz"},"Patterns":null},"System.Runtime.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Extensions.dll.gz"},"Patterns":null},"System.Runtime.Handles.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Handles.dll.gz"},"Patterns":null},"System.Runtime.InteropServices.RuntimeInformation.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz"},"Patterns":null},"System.Runtime.InteropServices.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.InteropServices.dll.gz"},"Patterns":null},"System.Runtime.Intrinsics.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Intrinsics.dll.gz"},"Patterns":null},"System.Runtime.Loader.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Loader.dll.gz"},"Patterns":null},"System.Runtime.Numerics.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Numerics.dll.gz"},"Patterns":null},"System.Runtime.Serialization.Formatters.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Serialization.Formatters.dll.gz"},"Patterns":null},"System.Runtime.Serialization.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Serialization.Json.dll.gz"},"Patterns":null},"System.Runtime.Serialization.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Serialization.Primitives.dll.gz"},"Patterns":null},"System.Runtime.Serialization.Xml.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Serialization.Xml.dll.gz"},"Patterns":null},"System.Runtime.Serialization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.Serialization.dll.gz"},"Patterns":null},"System.Runtime.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Runtime.dll.gz"},"Patterns":null},"System.Security.AccessControl.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.AccessControl.dll.gz"},"Patterns":null},"System.Security.Claims.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Claims.dll.gz"},"Patterns":null},"System.Security.Cryptography.Algorithms.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Cryptography.Algorithms.dll.gz"},"Patterns":null},"System.Security.Cryptography.Cng.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Cryptography.Cng.dll.gz"},"Patterns":null},"System.Security.Cryptography.Csp.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Cryptography.Csp.dll.gz"},"Patterns":null},"System.Security.Cryptography.Encoding.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Cryptography.Encoding.dll.gz"},"Patterns":null},"System.Security.Cryptography.OpenSsl.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Cryptography.OpenSsl.dll.gz"},"Patterns":null},"System.Security.Cryptography.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Cryptography.Primitives.dll.gz"},"Patterns":null},"System.Security.Cryptography.X509Certificates.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Cryptography.X509Certificates.dll.gz"},"Patterns":null},"System.Security.Principal.Windows.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Principal.Windows.dll.gz"},"Patterns":null},"System.Security.Principal.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.Principal.dll.gz"},"Patterns":null},"System.Security.SecureString.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.SecureString.dll.gz"},"Patterns":null},"System.Security.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Security.dll.gz"},"Patterns":null},"System.ServiceModel.Web.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ServiceModel.Web.dll.gz"},"Patterns":null},"System.ServiceProcess.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ServiceProcess.dll.gz"},"Patterns":null},"System.Text.Encoding.CodePages.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Text.Encoding.CodePages.dll.gz"},"Patterns":null},"System.Text.Encoding.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Text.Encoding.Extensions.dll.gz"},"Patterns":null},"System.Text.Encoding.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Text.Encoding.dll.gz"},"Patterns":null},"System.Text.Encodings.Web.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Text.Encodings.Web.dll.gz"},"Patterns":null},"System.Text.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Text.Json.dll.gz"},"Patterns":null},"System.Text.RegularExpressions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Text.RegularExpressions.dll.gz"},"Patterns":null},"System.Threading.Channels.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Channels.dll.gz"},"Patterns":null},"System.Threading.Overlapped.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Overlapped.dll.gz"},"Patterns":null},"System.Threading.Tasks.Dataflow.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Tasks.Dataflow.dll.gz"},"Patterns":null},"System.Threading.Tasks.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Tasks.Extensions.dll.gz"},"Patterns":null},"System.Threading.Tasks.Parallel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Tasks.Parallel.dll.gz"},"Patterns":null},"System.Threading.Tasks.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Tasks.dll.gz"},"Patterns":null},"System.Threading.Thread.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Thread.dll.gz"},"Patterns":null},"System.Threading.ThreadPool.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.ThreadPool.dll.gz"},"Patterns":null},"System.Threading.Timer.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.Timer.dll.gz"},"Patterns":null},"System.Threading.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Threading.dll.gz"},"Patterns":null},"System.Transactions.Local.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Transactions.Local.dll.gz"},"Patterns":null},"System.Transactions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Transactions.dll.gz"},"Patterns":null},"System.ValueTuple.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.ValueTuple.dll.gz"},"Patterns":null},"System.Web.HttpUtility.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Web.HttpUtility.dll.gz"},"Patterns":null},"System.Web.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Web.dll.gz"},"Patterns":null},"System.Windows.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Windows.dll.gz"},"Patterns":null},"System.Xml.Linq.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.Linq.dll.gz"},"Patterns":null},"System.Xml.ReaderWriter.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.ReaderWriter.dll.gz"},"Patterns":null},"System.Xml.Serialization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.Serialization.dll.gz"},"Patterns":null},"System.Xml.XDocument.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.XDocument.dll.gz"},"Patterns":null},"System.Xml.XPath.XDocument.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.XPath.XDocument.dll.gz"},"Patterns":null},"System.Xml.XPath.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.XPath.dll.gz"},"Patterns":null},"System.Xml.XmlDocument.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.XmlDocument.dll.gz"},"Patterns":null},"System.Xml.XmlSerializer.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.XmlSerializer.dll.gz"},"Patterns":null},"System.Xml.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Xml.dll.gz"},"Patterns":null},"System.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.dll.gz"},"Patterns":null},"WindowsBase.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/WindowsBase.dll.gz"},"Patterns":null},"mscorlib.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/mscorlib.dll.gz"},"Patterns":null},"netstandard.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/netstandard.dll.gz"},"Patterns":null},"System.Private.CoreLib.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/System.Private.CoreLib.dll.gz"},"Patterns":null},"dotnet.6.0.5.itaht6zf1c.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/dotnet.6.0.5.itaht6zf1c.js.gz"},"Patterns":null},"dotnet.timezones.blat.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/dotnet.timezones.blat.gz"},"Patterns":null},"dotnet.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/dotnet.wasm.gz"},"Patterns":null},"icudt.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/icudt.dat.gz"},"Patterns":null},"icudt_CJK.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/icudt_CJK.dat.gz"},"Patterns":null},"icudt_EFIGS.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/icudt_EFIGS.dat.gz"},"Patterns":null},"icudt_no_CJK.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/icudt_no_CJK.dat.gz"},"Patterns":null},"CS_Todo.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/CS_Todo.dll.gz"},"Patterns":null},"CS_Todo.pdb.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/CS_Todo.pdb.gz"},"Patterns":null},"blazor.webassembly.js.gz":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/blazor.webassembly.js.gz"},"Patterns":null},"blazor.boot.json":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"_framework/blazor.boot.json"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/CS_Todo/obj/project.assets.json b/CS_Todo/obj/project.assets.json new file mode 100644 index 00000000..fb1df2a9 --- /dev/null +++ b/CS_Todo/obj/project.assets.json @@ -0,0 +1,1625 @@ +{ + "version": 3, + "targets": { + "net6.0": { + "Microsoft.AspNetCore.Authorization/6.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Metadata": "6.0.5", + "Microsoft.Extensions.Logging.Abstractions": "6.0.1", + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": {} + } + }, + "Microsoft.AspNetCore.Components/6.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization": "6.0.5", + "Microsoft.AspNetCore.Components.Analyzers": "6.0.5" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Components.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Components.dll": {} + } + }, + "Microsoft.AspNetCore.Components.Analyzers/6.0.5": { + "type": "package", + "build": { + "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets": {} + } + }, + "Microsoft.AspNetCore.Components.Forms/6.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "6.0.5" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Components.Forms.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Components.Forms.dll": {} + } + }, + "Microsoft.AspNetCore.Components.Web/6.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "6.0.5", + "Microsoft.AspNetCore.Components.Forms": "6.0.5", + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.JSInterop": "6.0.5", + "System.IO.Pipelines": "6.0.3" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Components.Web.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Components.Web.dll": {} + } + }, + "Microsoft.AspNetCore.Components.WebAssembly/6.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components.Web": "6.0.5", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.JSInterop.WebAssembly": "6.0.5" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Components.WebAssembly.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Components.WebAssembly.dll": {} + }, + "build": { + "build/net6.0/Microsoft.AspNetCore.Components.WebAssembly.props": {} + } + }, + "Microsoft.AspNetCore.Components.WebAssembly.DevServer/6.0.5": { + "type": "package", + "build": { + "build/Microsoft.AspNetCore.Components.WebAssembly.DevServer.targets": {} + } + }, + "Microsoft.AspNetCore.Metadata/6.0.5": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": {} + } + }, + "Microsoft.Extensions.Configuration/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.1": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.JSInterop/6.0.5": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.JSInterop.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.JSInterop.dll": {} + } + }, + "Microsoft.JSInterop.WebAssembly/6.0.5": { + "type": "package", + "dependencies": { + "Microsoft.JSInterop": "6.0.5" + }, + "compile": { + "lib/net6.0/Microsoft.JSInterop.WebAssembly.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.JSInterop.WebAssembly.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.IO.Pipelines/6.0.3": { + "type": "package", + "compile": { + "lib/net6.0/System.IO.Pipelines.dll": {} + }, + "runtime": { + "lib/net6.0/System.IO.Pipelines.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/net6.0/System.Text.Encodings.Web.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Json.dll": {} + }, + "runtime": { + "lib/net6.0/System.Text.Json.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + } + }, + "net6.0/browser-wasm": { + "Microsoft.AspNetCore.Authorization/6.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Metadata": "6.0.5", + "Microsoft.Extensions.Logging.Abstractions": "6.0.1", + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": {} + } + }, + "Microsoft.AspNetCore.Components/6.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization": "6.0.5", + "Microsoft.AspNetCore.Components.Analyzers": "6.0.5" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Components.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Components.dll": {} + } + }, + "Microsoft.AspNetCore.Components.Analyzers/6.0.5": { + "type": "package", + "build": { + "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets": {} + } + }, + "Microsoft.AspNetCore.Components.Forms/6.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "6.0.5" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Components.Forms.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Components.Forms.dll": {} + } + }, + "Microsoft.AspNetCore.Components.Web/6.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "6.0.5", + "Microsoft.AspNetCore.Components.Forms": "6.0.5", + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.JSInterop": "6.0.5", + "System.IO.Pipelines": "6.0.3" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Components.Web.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Components.Web.dll": {} + } + }, + "Microsoft.AspNetCore.Components.WebAssembly/6.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components.Web": "6.0.5", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.Configuration.Json": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.JSInterop.WebAssembly": "6.0.5" + }, + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Components.WebAssembly.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Components.WebAssembly.dll": {} + }, + "build": { + "build/net6.0/Microsoft.AspNetCore.Components.WebAssembly.props": {} + } + }, + "Microsoft.AspNetCore.Components.WebAssembly.DevServer/6.0.5": { + "type": "package", + "build": { + "build/Microsoft.AspNetCore.Components.WebAssembly.DevServer.targets": {} + } + }, + "Microsoft.AspNetCore.Metadata/6.0.5": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": {} + } + }, + "Microsoft.Extensions.Configuration/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileProviders.Physical": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "6.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "6.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "System.Text.Json": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.1": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.JSInterop/6.0.5": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.JSInterop.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.JSInterop.dll": {} + } + }, + "Microsoft.JSInterop.WebAssembly/6.0.5": { + "type": "package", + "dependencies": { + "Microsoft.JSInterop": "6.0.5" + }, + "compile": { + "lib/net6.0/Microsoft.JSInterop.WebAssembly.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.JSInterop.WebAssembly.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.IO.Pipelines/6.0.3": { + "type": "package", + "compile": { + "lib/net6.0/System.IO.Pipelines.dll": {} + }, + "runtime": { + "lib/net6.0/System.IO.Pipelines.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Text.Json/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Json.dll": {} + }, + "runtime": { + "lib/net6.0/System.Text.Json.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNetCore.Authorization/6.0.5": { + "sha512": "T3J4Z4xK/mmJlMv/j7Cs1PZjRLh1fGsvHay3RNBNooP0qhHCk3UnU+WgBvcGApZFnEfeyOEGZBHZv5gb1RrDLA==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/6.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.AspNetCore.Authorization.dll", + "lib/net461/Microsoft.AspNetCore.Authorization.xml", + "lib/net6.0/Microsoft.AspNetCore.Authorization.dll", + "lib/net6.0/Microsoft.AspNetCore.Authorization.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.6.0.5.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Components/6.0.5": { + "sha512": "pm7wo05ANEduCj/HCKVIvBLL8BzszHttgHtX/hbV5f6xb6/0oCsTuZexRmBfM30PrlbQDjzWuH1rpiPYP30l7g==", + "type": "package", + "path": "microsoft.aspnetcore.components/6.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net6.0/Microsoft.AspNetCore.Components.dll", + "lib/net6.0/Microsoft.AspNetCore.Components.xml", + "microsoft.aspnetcore.components.6.0.5.nupkg.sha512", + "microsoft.aspnetcore.components.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Analyzers/6.0.5": { + "sha512": "zxAXJIA/VL3BkqBPvgNiojppfmhmOIB8JtWi1Q85kcy1MGxwOi+UXAFXlvaMliocrycUazTguZBTXMhC2jFiow==", + "type": "package", + "path": "microsoft.aspnetcore.components.analyzers/6.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "analyzers/dotnet/cs/Microsoft.AspNetCore.Components.Analyzers.dll", + "build/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets", + "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets", + "microsoft.aspnetcore.components.analyzers.6.0.5.nupkg.sha512", + "microsoft.aspnetcore.components.analyzers.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Forms/6.0.5": { + "sha512": "yh8bWPxPkJ/60IHVA6Vv5dPuyG/i4LiG6Nwkq/8ejtHn/hyGuPBrcsymBjLGQEqSmhTPnqteIL9BOP7VBYV1NQ==", + "type": "package", + "path": "microsoft.aspnetcore.components.forms/6.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net6.0/Microsoft.AspNetCore.Components.Forms.dll", + "lib/net6.0/Microsoft.AspNetCore.Components.Forms.xml", + "microsoft.aspnetcore.components.forms.6.0.5.nupkg.sha512", + "microsoft.aspnetcore.components.forms.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Web/6.0.5": { + "sha512": "QbPAY7trw1IpafCIbizib1IW/3Lqxf3AJ6tCO/FzbmvWeImD3rNLrgWb3gH7Mz+RtkmYmbrfdEk4eh9mW/2tGg==", + "type": "package", + "path": "microsoft.aspnetcore.components.web/6.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net6.0/Microsoft.AspNetCore.Components.Web.dll", + "lib/net6.0/Microsoft.AspNetCore.Components.Web.xml", + "microsoft.aspnetcore.components.web.6.0.5.nupkg.sha512", + "microsoft.aspnetcore.components.web.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.WebAssembly/6.0.5": { + "sha512": "cK3i7ajtDNiclsxMz/goFNTNAX/bdNZ71XYCe6kZLGLgLfXM70i1JJm4B6Ye8o0g7AE+ZquPB4yCHt7BS2NnsQ==", + "type": "package", + "path": "microsoft.aspnetcore.components.webassembly/6.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "build/net6.0/Microsoft.AspNetCore.Components.WebAssembly.props", + "build/net6.0/blazor.webassembly.js", + "lib/net6.0/Microsoft.AspNetCore.Components.WebAssembly.dll", + "lib/net6.0/Microsoft.AspNetCore.Components.WebAssembly.xml", + "microsoft.aspnetcore.components.webassembly.6.0.5.nupkg.sha512", + "microsoft.aspnetcore.components.webassembly.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.WebAssembly.DevServer/6.0.5": { + "sha512": "rPfI16IOVn8F7gty5Hmgrg64bjZ4GL7TeNIyIwvWxPD3qBN9J9LNhpWm9idC63uis1NjwR0siGRRPfWU5PTz7g==", + "type": "package", + "path": "microsoft.aspnetcore.components.webassembly.devserver/6.0.5", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "build/Microsoft.AspNetCore.Components.WebAssembly.DevServer.targets", + "microsoft.aspnetcore.components.webassembly.devserver.6.0.5.nupkg.sha512", + "microsoft.aspnetcore.components.webassembly.devserver.nuspec", + "tools/BlazorDebugProxy/BrowserDebugHost.dll", + "tools/BlazorDebugProxy/BrowserDebugHost.runtimeconfig.json", + "tools/BlazorDebugProxy/BrowserDebugProxy.dll", + "tools/BlazorDebugProxy/Microsoft.CodeAnalysis.CSharp.dll", + "tools/BlazorDebugProxy/Microsoft.CodeAnalysis.dll", + "tools/BlazorDebugProxy/Newtonsoft.Json.dll", + "tools/Microsoft.AspNetCore.Authentication.Abstractions.dll", + "tools/Microsoft.AspNetCore.Authentication.Abstractions.xml", + "tools/Microsoft.AspNetCore.Authentication.Core.dll", + "tools/Microsoft.AspNetCore.Authentication.Core.xml", + "tools/Microsoft.AspNetCore.Authorization.dll", + "tools/Microsoft.AspNetCore.Authorization.xml", + "tools/Microsoft.AspNetCore.Components.WebAssembly.Server.dll", + "tools/Microsoft.AspNetCore.Components.WebAssembly.Server.xml", + "tools/Microsoft.AspNetCore.Connections.Abstractions.dll", + "tools/Microsoft.AspNetCore.Connections.Abstractions.xml", + "tools/Microsoft.AspNetCore.Diagnostics.Abstractions.dll", + "tools/Microsoft.AspNetCore.Diagnostics.Abstractions.xml", + "tools/Microsoft.AspNetCore.Diagnostics.dll", + "tools/Microsoft.AspNetCore.Diagnostics.xml", + "tools/Microsoft.AspNetCore.HostFiltering.dll", + "tools/Microsoft.AspNetCore.HostFiltering.xml", + "tools/Microsoft.AspNetCore.Hosting.Abstractions.dll", + "tools/Microsoft.AspNetCore.Hosting.Abstractions.xml", + "tools/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", + "tools/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml", + "tools/Microsoft.AspNetCore.Hosting.dll", + "tools/Microsoft.AspNetCore.Hosting.xml", + "tools/Microsoft.AspNetCore.Http.Abstractions.dll", + "tools/Microsoft.AspNetCore.Http.Abstractions.xml", + "tools/Microsoft.AspNetCore.Http.Extensions.dll", + "tools/Microsoft.AspNetCore.Http.Extensions.xml", + "tools/Microsoft.AspNetCore.Http.Features.dll", + "tools/Microsoft.AspNetCore.Http.Features.xml", + "tools/Microsoft.AspNetCore.Http.dll", + "tools/Microsoft.AspNetCore.Http.xml", + "tools/Microsoft.AspNetCore.HttpOverrides.dll", + "tools/Microsoft.AspNetCore.HttpOverrides.xml", + "tools/Microsoft.AspNetCore.Metadata.dll", + "tools/Microsoft.AspNetCore.Metadata.xml", + "tools/Microsoft.AspNetCore.Routing.Abstractions.dll", + "tools/Microsoft.AspNetCore.Routing.Abstractions.xml", + "tools/Microsoft.AspNetCore.Routing.dll", + "tools/Microsoft.AspNetCore.Routing.xml", + "tools/Microsoft.AspNetCore.Server.IIS.dll", + "tools/Microsoft.AspNetCore.Server.IIS.xml", + "tools/Microsoft.AspNetCore.Server.IISIntegration.dll", + "tools/Microsoft.AspNetCore.Server.IISIntegration.xml", + "tools/Microsoft.AspNetCore.Server.Kestrel.Core.dll", + "tools/Microsoft.AspNetCore.Server.Kestrel.Core.xml", + "tools/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll", + "tools/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.xml", + "tools/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll", + "tools/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.xml", + "tools/Microsoft.AspNetCore.Server.Kestrel.dll", + "tools/Microsoft.AspNetCore.Server.Kestrel.xml", + "tools/Microsoft.AspNetCore.StaticFiles.dll", + "tools/Microsoft.AspNetCore.StaticFiles.xml", + "tools/Microsoft.AspNetCore.WebUtilities.dll", + "tools/Microsoft.AspNetCore.WebUtilities.xml", + "tools/Microsoft.AspNetCore.dll", + "tools/Microsoft.AspNetCore.xml", + "tools/Microsoft.Extensions.Configuration.Abstractions.dll", + "tools/Microsoft.Extensions.Configuration.Binder.dll", + "tools/Microsoft.Extensions.Configuration.CommandLine.dll", + "tools/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "tools/Microsoft.Extensions.Configuration.FileExtensions.dll", + "tools/Microsoft.Extensions.Configuration.Json.dll", + "tools/Microsoft.Extensions.Configuration.UserSecrets.dll", + "tools/Microsoft.Extensions.Configuration.dll", + "tools/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "tools/Microsoft.Extensions.DependencyInjection.dll", + "tools/Microsoft.Extensions.Features.dll", + "tools/Microsoft.Extensions.Features.xml", + "tools/Microsoft.Extensions.FileProviders.Abstractions.dll", + "tools/Microsoft.Extensions.FileProviders.Composite.dll", + "tools/Microsoft.Extensions.FileProviders.Physical.dll", + "tools/Microsoft.Extensions.FileSystemGlobbing.dll", + "tools/Microsoft.Extensions.Hosting.Abstractions.dll", + "tools/Microsoft.Extensions.Hosting.dll", + "tools/Microsoft.Extensions.Logging.Abstractions.dll", + "tools/Microsoft.Extensions.Logging.Configuration.dll", + "tools/Microsoft.Extensions.Logging.Console.dll", + "tools/Microsoft.Extensions.Logging.Debug.dll", + "tools/Microsoft.Extensions.Logging.EventLog.dll", + "tools/Microsoft.Extensions.Logging.EventSource.dll", + "tools/Microsoft.Extensions.Logging.dll", + "tools/Microsoft.Extensions.ObjectPool.dll", + "tools/Microsoft.Extensions.ObjectPool.xml", + "tools/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "tools/Microsoft.Extensions.Options.dll", + "tools/Microsoft.Extensions.Primitives.dll", + "tools/Microsoft.Extensions.WebEncoders.dll", + "tools/Microsoft.Extensions.WebEncoders.xml", + "tools/Microsoft.Net.Http.Headers.dll", + "tools/Microsoft.Net.Http.Headers.xml", + "tools/System.Diagnostics.EventLog.dll", + "tools/System.IO.Pipelines.dll", + "tools/blazor-devserver.deps.json", + "tools/blazor-devserver.dll", + "tools/blazor-devserver.exe", + "tools/blazor-devserver.runtimeconfig.json", + "tools/blazor-devserver.xml", + "tools/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll", + "tools/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll", + "tools/x64/aspnetcorev2_inprocess.dll", + "tools/x86/aspnetcorev2_inprocess.dll" + ] + }, + "Microsoft.AspNetCore.Metadata/6.0.5": { + "sha512": "4VRJoJa/EbncxQTAzM6abqQUUbNrohg5MC1glZ1R1lzzXJM2CdXiRKvcpAfn3luAwPzkwJtHejuLgI6Osn0aDA==", + "type": "package", + "path": "microsoft.aspnetcore.metadata/6.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.AspNetCore.Metadata.dll", + "lib/net461/Microsoft.AspNetCore.Metadata.xml", + "lib/net6.0/Microsoft.AspNetCore.Metadata.dll", + "lib/net6.0/Microsoft.AspNetCore.Metadata.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml", + "microsoft.aspnetcore.metadata.6.0.5.nupkg.sha512", + "microsoft.aspnetcore.metadata.nuspec" + ] + }, + "Microsoft.Extensions.Configuration/6.0.0": { + "sha512": "tq2wXyh3fL17EMF2bXgRhU7JrbO3on93MRKYxzz4JzzvuGSA1l0W3GI9/tl8EO89TH+KWEymP7bcFway6z9fXg==", + "type": "package", + "path": "microsoft.extensions.configuration/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.dll", + "lib/net461/Microsoft.Extensions.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/6.0.0": { + "sha512": "qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "sha512": "b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "type": "package", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net461/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", + "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.binder.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": { + "sha512": "V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==", + "type": "package", + "path": "microsoft.extensions.configuration.fileextensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.fileextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Json/6.0.0": { + "sha512": "GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==", + "type": "package", + "path": "microsoft.extensions.configuration.json/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Json.dll", + "lib/net461/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml", + "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512", + "microsoft.extensions.configuration.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.DependencyInjection.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": { + "sha512": "0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Physical/6.0.0": { + "sha512": "QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==", + "type": "package", + "path": "microsoft.extensions.fileproviders.physical/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml", + "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.physical.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileSystemGlobbing/6.0.0": { + "sha512": "ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==", + "type": "package", + "path": "microsoft.extensions.filesystemglobbing/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512", + "microsoft.extensions.filesystemglobbing.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/6.0.0": { + "sha512": "eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "type": "package", + "path": "microsoft.extensions.logging/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.dll", + "lib/net461/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.1": { + "sha512": "dzB2Cgg+JmrouhjkcQGzSFjjvpwlq353i8oBQO2GWNjCXSzhbtBRUf28HSauWe7eib3wYOdb3tItdjRwAdwCSg==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "build/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.6.0.1.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/6.0.0": { + "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "type": "package", + "path": "microsoft.extensions.options/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Options.dll", + "lib/net461/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.6.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "type": "package", + "path": "microsoft.extensions.primitives/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Primitives.dll", + "lib/net461/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.JSInterop/6.0.5": { + "sha512": "ST48YNjqpW2WNbTFBN5V3fdpnV8Civ6VeewzGtKdtYtBtM0q5afQVnUOwx3w5oeBZNQjn2nk3OZM1tSe10x4lA==", + "type": "package", + "path": "microsoft.jsinterop/6.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/Microsoft.JSInterop.dll", + "lib/net6.0/Microsoft.JSInterop.xml", + "microsoft.jsinterop.6.0.5.nupkg.sha512", + "microsoft.jsinterop.nuspec" + ] + }, + "Microsoft.JSInterop.WebAssembly/6.0.5": { + "sha512": "bz1PkJmgBZ4sDY2HeIRuesmLGmNSKejFKDyxG+fWu9HsW0MGpWYiJkJ2Dlnpja9Uoe01kh5s1CMx9tz5mg4v6g==", + "type": "package", + "path": "microsoft.jsinterop.webassembly/6.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net6.0/Microsoft.JSInterop.WebAssembly.dll", + "lib/net6.0/Microsoft.JSInterop.WebAssembly.xml", + "microsoft.jsinterop.webassembly.6.0.5.nupkg.sha512", + "microsoft.jsinterop.webassembly.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.DiagnosticSource.dll", + "lib/net461/System.Diagnostics.DiagnosticSource.xml", + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.IO.Pipelines/6.0.3": { + "sha512": "ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==", + "type": "package", + "path": "system.io.pipelines/6.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.IO.Pipelines.dll", + "lib/net461/System.IO.Pipelines.xml", + "lib/net6.0/System.IO.Pipelines.dll", + "lib/net6.0/System.IO.Pipelines.xml", + "lib/netcoreapp3.1/System.IO.Pipelines.dll", + "lib/netcoreapp3.1/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "system.io.pipelines.6.0.3.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Encodings.Web/6.0.0": { + "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "type": "package", + "path": "system.text.encodings.web/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "lib/netcoreapp3.1/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.6.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/6.0.0": { + "sha512": "zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==", + "type": "package", + "path": "system.text.json/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "build/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Json.dll", + "lib/net461/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/netcoreapp3.1/System.Text.Json.dll", + "lib/netcoreapp3.1/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.6.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + } + }, + "projectFileDependencyGroups": { + "net6.0": [ + "Microsoft.AspNetCore.Components.WebAssembly >= 6.0.5", + "Microsoft.AspNetCore.Components.WebAssembly.DevServer >= 6.0.5" + ] + }, + "packageFolders": { + "/Users/normrasmussen/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/normrasmussen/Documents/Northpass/CS_Todo/CS_Todo.csproj", + "projectName": "CS_Todo", + "projectPath": "/Users/normrasmussen/Documents/Northpass/CS_Todo/CS_Todo.csproj", + "packagesPath": "/Users/normrasmussen/.nuget/packages/", + "outputPath": "/Users/normrasmussen/Documents/Northpass/CS_Todo/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/normrasmussen/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Microsoft.AspNetCore.Components.WebAssembly": { + "target": "Package", + "version": "[6.0.5, )" + }, + "Microsoft.AspNetCore.Components.WebAssembly.DevServer": { + "suppressParent": "All", + "target": "Package", + "version": "[6.0.5, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.NETCore.App.Runtime.Mono.browser-wasm", + "version": "[6.0.5, 6.0.5]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/6.0.300/RuntimeIdentifierGraph.json" + } + }, + "runtimes": { + "browser-wasm": { + "#import": [] + } + } + } +} \ No newline at end of file diff --git a/CS_Todo/obj/project.nuget.cache b/CS_Todo/obj/project.nuget.cache new file mode 100644 index 00000000..cfd3c08b --- /dev/null +++ b/CS_Todo/obj/project.nuget.cache @@ -0,0 +1,39 @@ +{ + "version": 2, + "dgSpecHash": "GEjhkxT/YUmZ6qoJzi6C/fiU4aVCr0/94gcWzXiYLFfLeixHnSFZOJAL7mBgxEBIDRnytRtuY2jx872SD9oYWg==", + "success": true, + "projectFilePath": "/Users/normrasmussen/Documents/Northpass/CS_Todo/CS_Todo.csproj", + "expectedPackageFiles": [ + "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.authorization/6.0.5/microsoft.aspnetcore.authorization.6.0.5.nupkg.sha512", + "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components/6.0.5/microsoft.aspnetcore.components.6.0.5.nupkg.sha512", + "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components.analyzers/6.0.5/microsoft.aspnetcore.components.analyzers.6.0.5.nupkg.sha512", + "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components.forms/6.0.5/microsoft.aspnetcore.components.forms.6.0.5.nupkg.sha512", + "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components.web/6.0.5/microsoft.aspnetcore.components.web.6.0.5.nupkg.sha512", + "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components.webassembly/6.0.5/microsoft.aspnetcore.components.webassembly.6.0.5.nupkg.sha512", + "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.components.webassembly.devserver/6.0.5/microsoft.aspnetcore.components.webassembly.devserver.6.0.5.nupkg.sha512", + "/Users/normrasmussen/.nuget/packages/microsoft.aspnetcore.metadata/6.0.5/microsoft.aspnetcore.metadata.6.0.5.nupkg.sha512", + "/Users/normrasmussen/.nuget/packages/microsoft.extensions.configuration/6.0.0/microsoft.extensions.configuration.6.0.0.nupkg.sha512", + "/Users/normrasmussen/.nuget/packages/microsoft.extensions.configuration.abstractions/6.0.0/microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", + "/Users/normrasmussen/.nuget/packages/microsoft.extensions.configuration.binder/6.0.0/microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512", + "/Users/normrasmussen/.nuget/packages/microsoft.extensions.configuration.fileextensions/6.0.0/microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512", + "/Users/normrasmussen/.nuget/packages/microsoft.extensions.configuration.json/6.0.0/microsoft.extensions.configuration.json.6.0.0.nupkg.sha512", + "/Users/normrasmussen/.nuget/packages/microsoft.extensions.dependencyinjection/6.0.0/microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", + "/Users/normrasmussen/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/6.0.0/microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "/Users/normrasmussen/.nuget/packages/microsoft.extensions.fileproviders.abstractions/6.0.0/microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512", + "/Users/normrasmussen/.nuget/packages/microsoft.extensions.fileproviders.physical/6.0.0/microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512", + "/Users/normrasmussen/.nuget/packages/microsoft.extensions.filesystemglobbing/6.0.0/microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512", + "/Users/normrasmussen/.nuget/packages/microsoft.extensions.logging/6.0.0/microsoft.extensions.logging.6.0.0.nupkg.sha512", + "/Users/normrasmussen/.nuget/packages/microsoft.extensions.logging.abstractions/6.0.1/microsoft.extensions.logging.abstractions.6.0.1.nupkg.sha512", + "/Users/normrasmussen/.nuget/packages/microsoft.extensions.options/6.0.0/microsoft.extensions.options.6.0.0.nupkg.sha512", + "/Users/normrasmussen/.nuget/packages/microsoft.extensions.primitives/6.0.0/microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "/Users/normrasmussen/.nuget/packages/microsoft.jsinterop/6.0.5/microsoft.jsinterop.6.0.5.nupkg.sha512", + "/Users/normrasmussen/.nuget/packages/microsoft.jsinterop.webassembly/6.0.5/microsoft.jsinterop.webassembly.6.0.5.nupkg.sha512", + "/Users/normrasmussen/.nuget/packages/system.diagnostics.diagnosticsource/6.0.0/system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", + "/Users/normrasmussen/.nuget/packages/system.io.pipelines/6.0.3/system.io.pipelines.6.0.3.nupkg.sha512", + "/Users/normrasmussen/.nuget/packages/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "/Users/normrasmussen/.nuget/packages/system.text.encodings.web/6.0.0/system.text.encodings.web.6.0.0.nupkg.sha512", + "/Users/normrasmussen/.nuget/packages/system.text.json/6.0.0/system.text.json.6.0.0.nupkg.sha512", + "/Users/normrasmussen/.nuget/packages/microsoft.netcore.app.runtime.mono.browser-wasm/6.0.5/microsoft.netcore.app.runtime.mono.browser-wasm.6.0.5.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/CS_Todo/obj/staticwebassets.pack.sentinel b/CS_Todo/obj/staticwebassets.pack.sentinel new file mode 100644 index 00000000..4d13c579 --- /dev/null +++ b/CS_Todo/obj/staticwebassets.pack.sentinel @@ -0,0 +1,6 @@ +2.0 +2.0 +2.0 +2.0 +2.0 +2.0 diff --git a/CS_Todo/wwwroot/css/app.css b/CS_Todo/wwwroot/css/app.css new file mode 100644 index 00000000..7157ee8f --- /dev/null +++ b/CS_Todo/wwwroot/css/app.css @@ -0,0 +1,64 @@ +@import url('open-iconic/font/css/open-iconic-bootstrap.min.css'); + +html, body { + font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; +} + +h1:focus { + outline: none; +} + +a, .btn-link { + color: #0071c1; +} + +.btn-primary { + color: #fff; + background-color: #1b6ec2; + border-color: #1861ac; +} + +.content { + padding-top: 1.1rem; +} + +.valid.modified:not([type=checkbox]) { + outline: 1px solid #26b050; +} + +.invalid { + outline: 1px solid red; +} + +.validation-message { + color: red; +} + +#blazor-error-ui { + background: lightyellow; + bottom: 0; + box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); + display: none; + left: 0; + padding: 0.6rem 1.25rem 0.7rem 1.25rem; + position: fixed; + width: 100%; + z-index: 1000; +} + + #blazor-error-ui .dismiss { + cursor: pointer; + position: absolute; + right: 0.75rem; + top: 0.5rem; + } + +.blazor-error-boundary { + background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121; + padding: 1rem 1rem 1rem 3.7rem; + color: white; +} + + .blazor-error-boundary::after { + content: "An error has occurred." + } diff --git a/CS_Todo/wwwroot/css/bootstrap/bootstrap.min.css b/CS_Todo/wwwroot/css/bootstrap/bootstrap.min.css new file mode 100644 index 00000000..02ae65b5 --- /dev/null +++ b/CS_Todo/wwwroot/css/bootstrap/bootstrap.min.css @@ -0,0 +1,7 @@ +@charset "UTF-8";/*! + * Bootstrap v5.1.0 (https://getbootstrap.com/) + * Copyright 2011-2021 The Bootstrap Authors + * Copyright 2011-2021 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-body-rgb:33,37,41;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-bg:#fff}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#6c757d}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-right:var(--bs-gutter-x,.75rem);padding-left:var(--bs-gutter-x,.75rem);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x) * -.5);margin-left:calc(var(--bs-gutter-x) * -.5)}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-bg:transparent;--bs-table-accent-bg:transparent;--bs-table-striped-color:#212529;--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:#212529;--bs-table-active-bg:rgba(0, 0, 0, 0.1);--bs-table-hover-color:#212529;--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#dee2e6}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:last-child)>:last-child>*{border-bottom-color:currentColor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-striped>tbody>tr:nth-of-type(odd){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-bg:#cfe2ff;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:#000;border-color:#bacbe6}.table-secondary{--bs-table-bg:#e2e3e5;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:#000;border-color:#cbccce}.table-success{--bs-table-bg:#d1e7dd;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:#000;border-color:#bcd0c7}.table-info{--bs-table-bg:#cff4fc;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:#000;border-color:#badce3}.table-warning{--bs-table-bg:#fff3cd;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:#000;border-color:#e6dbb9}.table-danger{--bs-table-bg:#f8d7da;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:#000;border-color:#dfc2c4}.table-light{--bs-table-bg:#f8f9fa;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:#000;border-color:#dfe0e1}.table-dark{--bs-table-bg:#212529;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:#fff;border-color:#373b3e}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + .5rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}.form-control-color{width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(0.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .75rem}.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(25,135,84,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:#198754}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#198754}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#198754}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group .form-control.is-valid,.input-group .form-select.is-valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{z-index:1}.input-group .form-control.is-valid:focus,.input-group .form-select.is-valid:focus,.was-validated .input-group .form-control:valid:focus,.was-validated .input-group .form-select:valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#dc3545}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#dc3545}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#dc3545}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{z-index:2}.input-group .form-control.is-invalid:focus,.input-group .form-select.is-invalid:focus,.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group .form-select:invalid:focus{z-index:3}.btn{display:inline-block;font-weight:400;line-height:1.5;color:#212529;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-primary:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-success{color:#fff;background-color:#198754;border-color:#198754}.btn-success:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+.btn-success,.btn-success:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#198754;border-color:#198754}.btn-info{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-info:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+.btn-info,.btn-info:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-info.disabled,.btn-info:disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-warning{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-light{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-light.disabled,.btn-light:disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-dark{color:#fff;background-color:#212529;border-color:#212529}.btn-dark:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-outline-primary{color:#0d6efd;border-color:#0d6efd}.btn-outline-primary:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary:active{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:active+.btn-outline-primary:focus,.btn-check:checked+.btn-outline-primary:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#0d6efd;background-color:transparent}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:active+.btn-outline-secondary:focus,.btn-check:checked+.btn-outline-secondary:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-success{color:#198754;border-color:#198754}.btn-outline-success:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success:active{color:#fff;background-color:#198754;border-color:#198754}.btn-check:active+.btn-outline-success:focus,.btn-check:checked+.btn-outline-success:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#198754;background-color:transparent}.btn-outline-info{color:#0dcaf0;border-color:#0dcaf0}.btn-outline-info:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info:active{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:active+.btn-outline-info:focus,.btn-check:checked+.btn-outline-info:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#0dcaf0;background-color:transparent}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning:active{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:active+.btn-outline-warning:focus,.btn-check:checked+.btn-outline-warning:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger:active{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:active+.btn-outline-danger:focus,.btn-check:checked+.btn-outline-danger:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light:active{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:active+.btn-outline-light:focus,.btn-check:checked+.btn-outline-light:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-dark{color:#212529;border-color:#212529}.btn-outline-dark:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark:active{color:#fff;background-color:#212529;border-color:#212529}.btn-check:active+.btn-outline-dark:focus,.btn-check:checked+.btn-outline-dark:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#212529;background-color:transparent}.btn-link{font-weight:400;color:#0d6efd;text-decoration:underline}.btn-link:hover{color:#0a58ca}.btn-link.disabled,.btn-link:disabled{color:#6c757d}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropend,.dropstart,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#1e2125;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#0d6efd}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#212529}.dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#dee2e6}.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#0d6efd}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#dee2e6}.dropdown-menu-dark .dropdown-header{color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#0d6efd;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:#0a58ca}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;background:0 0;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6;isolation:isolate}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:0 0;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#0d6efd}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas-header{display:none}.navbar-expand-sm .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-sm .offcanvas-bottom,.navbar-expand-sm .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas-header{display:none}.navbar-expand-md .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-md .offcanvas-bottom,.navbar-expand-md .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas-header{display:none}.navbar-expand-lg .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-lg .offcanvas-bottom,.navbar-expand-lg .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas-header{display:none}.navbar-expand-xl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xl .offcanvas-bottom,.navbar-expand-xl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xxl .offcanvas-bottom,.navbar-expand-xxl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas-header{display:none}.navbar-expand .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand .offcanvas-bottom,.navbar-expand .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.55)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1rem 1rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{padding:.5rem 1rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.5rem;margin-bottom:-.5rem;margin-left:-.5rem;border-bottom:0}.card-header-pills{margin-right:-.5rem;margin-left:-.5rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#212529;text-align:left;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#0c63e4;background-color:#e7f1ff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed)::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(-180deg)}.accordion-button::after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-body{padding:1rem 1.25rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}.breadcrumb{display:flex;flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:#0d6efd;text-decoration:none;background-color:#fff;border:1px solid #dee2e6;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#0a58ca;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;color:#0a58ca;background-color:#e9ecef;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;background-color:#fff;border-color:#dee2e6}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem 1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{color:#084298;background-color:#cfe2ff;border-color:#b6d4fe}.alert-primary .alert-link{color:#06357a}.alert-secondary{color:#41464b;background-color:#e2e3e5;border-color:#d3d6d8}.alert-secondary .alert-link{color:#34383c}.alert-success{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}.alert-success .alert-link{color:#0c4128}.alert-info{color:#055160;background-color:#cff4fc;border-color:#b6effb}.alert-info .alert-link{color:#04414d}.alert-warning{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}.alert-warning .alert-link{color:#523e02}.alert-danger{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}.alert-danger .alert-link{color:#6a1a21}.alert-light{color:#636464;background-color:#fefefe;border-color:#fdfdfe}.alert-light .alert-link{color:#4f5050}.alert-dark{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}.alert-dark .alert-link{color:#101214}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:1rem}}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#0d6efd;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#212529;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#084298;background-color:#cfe2ff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#084298;background-color:#bacbe6}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}.list-group-item-secondary{color:#41464b;background-color:#e2e3e5}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#41464b;background-color:#cbccce}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}.list-group-item-success{color:#0f5132;background-color:#d1e7dd}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#0f5132;background-color:#bcd0c7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-info{color:#055160;background-color:#cff4fc}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#055160;background-color:#badce3}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-warning{color:#664d03;background-color:#fff3cd}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#664d03;background-color:#e6dbb9}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-danger{color:#842029;background-color:#f8d7da}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#842029;background-color:#dfc2c4}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-light{color:#636464;background-color:#fefefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#636464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-dark{color:#141619;background-color:#d3d3d4}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#141619;background-color:#bebebf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1rem rgba(0,0,0,.15);border-radius:.25rem}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-header .btn-close{margin-right:-.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;left:0;z-index:1055;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .btn-close{padding:.5rem .5rem;margin:-.5rem -.5rem -.5rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[data-popper-placement^=right],.bs-tooltip-end{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[data-popper-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[data-popper-placement^=left],.bs-tooltip-start{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem 1rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-border{to{transform:rotate(360deg)}}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.offcanvas{position:fixed;bottom:0;z-index:1045;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1rem}.offcanvas-header .btn-close{padding:.5rem .5rem;margin-top:-.5rem;margin-right:-.5rem;margin-bottom:-.5rem}.offcanvas-title{margin-bottom:0;line-height:1.5}.offcanvas-body{flex-grow:1;padding:1rem 1rem;overflow-y:auto}.offcanvas-start{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-end{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-top{top:0;right:0;left:0;height:30vh;max-height:100%;border-bottom:1px solid rgba(0,0,0,.2);transform:translateY(-100%)}.offcanvas-bottom{right:0;left:0;height:30vh;max-height:100%;border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentColor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{-webkit-animation:placeholder-glow 2s ease-in-out infinite;animation:placeholder-glow 2s ease-in-out infinite}@-webkit-keyframes placeholder-glow{50%{opacity:.2}}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;-webkit-animation:placeholder-wave 2s linear infinite;animation:placeholder-wave 2s linear infinite}@-webkit-keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.link-primary{color:#0d6efd}.link-primary:focus,.link-primary:hover{color:#0a58ca}.link-secondary{color:#6c757d}.link-secondary:focus,.link-secondary:hover{color:#565e64}.link-success{color:#198754}.link-success:focus,.link-success:hover{color:#146c43}.link-info{color:#0dcaf0}.link-info:focus,.link-info:hover{color:#3dd5f3}.link-warning{color:#ffc107}.link-warning:focus,.link-warning:hover{color:#ffcd39}.link-danger{color:#dc3545}.link-danger:focus,.link-danger:hover{color:#b02a37}.link-light{color:#f8f9fa}.link-light:focus,.link-light:hover{color:#f9fafb}.link-dark{color:#212529}.link-dark:focus,.link-dark:hover{color:#1a1e21}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:calc(3 / 4 * 100%)}.ratio-16x9{--bs-aspect-ratio:calc(9 / 16 * 100%)}.ratio-21x9{--bs-aspect-ratio:calc(9 / 21 * 100%)}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentColor;opacity:.25}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #dee2e6!important}.border-0{border:0!important}.border-top{border-top:1px solid #dee2e6!important}.border-top-0{border-top:0!important}.border-end{border-right:1px solid #dee2e6!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:1px solid #dee2e6!important}.border-start-0{border-left:0!important}.border-primary{border-color:#0d6efd!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#198754!important}.border-info{border-color:#0dcaf0!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#212529!important}.border-white{border-color:#fff!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:#6c757d!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.25rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.2rem!important}.rounded-2{border-radius:.25rem!important}.rounded-3{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-end{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-start{border-bottom-left-radius:.25rem!important;border-top-left-radius:.25rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}} +/*# sourceMappingURL=bootstrap.min.css.map */ \ No newline at end of file diff --git a/CS_Todo/wwwroot/css/bootstrap/bootstrap.min.css.map b/CS_Todo/wwwroot/css/bootstrap/bootstrap.min.css.map new file mode 100644 index 00000000..afcd9e33 --- /dev/null +++ b/CS_Todo/wwwroot/css/bootstrap/bootstrap.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/bootstrap.scss","../../scss/_root.scss","../../scss/_reboot.scss","dist/css/bootstrap.css","../../scss/vendor/_rfs.scss","../../scss/mixins/_border-radius.scss","../../scss/_type.scss","../../scss/mixins/_lists.scss","../../scss/_images.scss","../../scss/mixins/_image.scss","../../scss/_containers.scss","../../scss/mixins/_container.scss","../../scss/mixins/_breakpoints.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/_tables.scss","../../scss/mixins/_table-variants.scss","../../scss/forms/_labels.scss","../../scss/forms/_form-text.scss","../../scss/forms/_form-control.scss","../../scss/mixins/_transition.scss","../../scss/mixins/_gradients.scss","../../scss/forms/_form-select.scss","../../scss/forms/_form-check.scss","../../scss/forms/_form-range.scss","../../scss/forms/_floating-labels.scss","../../scss/forms/_input-group.scss","../../scss/mixins/_forms.scss","../../scss/_buttons.scss","../../scss/mixins/_buttons.scss","../../scss/_transitions.scss","../../scss/_dropdown.scss","../../scss/mixins/_caret.scss","../../scss/_button-group.scss","../../scss/_nav.scss","../../scss/_navbar.scss","../../scss/_card.scss","../../scss/_accordion.scss","../../scss/_breadcrumb.scss","../../scss/_pagination.scss","../../scss/mixins/_pagination.scss","../../scss/_badge.scss","../../scss/_alert.scss","../../scss/mixins/_alert.scss","../../scss/_progress.scss","../../scss/_list-group.scss","../../scss/mixins/_list-group.scss","../../scss/_close.scss","../../scss/_toasts.scss","../../scss/_modal.scss","../../scss/mixins/_backdrop.scss","../../scss/_tooltip.scss","../../scss/mixins/_reset-text.scss","../../scss/_popover.scss","../../scss/_carousel.scss","../../scss/mixins/_clearfix.scss","../../scss/_spinners.scss","../../scss/_offcanvas.scss","../../scss/_placeholders.scss","../../scss/helpers/_colored-links.scss","../../scss/helpers/_ratio.scss","../../scss/helpers/_position.scss","../../scss/helpers/_stacks.scss","../../scss/helpers/_visually-hidden.scss","../../scss/mixins/_visually-hidden.scss","../../scss/helpers/_stretched-link.scss","../../scss/helpers/_text-truncation.scss","../../scss/mixins/_text-truncate.scss","../../scss/helpers/_vr.scss","../../scss/mixins/_utilities.scss","../../scss/utilities/_api.scss"],"names":[],"mappings":"iBAAA;;;;;ACAA,MAQI,UAAA,QAAA,YAAA,QAAA,YAAA,QAAA,UAAA,QAAA,SAAA,QAAA,YAAA,QAAA,YAAA,QAAA,WAAA,QAAA,UAAA,QAAA,UAAA,QAAA,WAAA,KAAA,UAAA,QAAA,eAAA,QAIA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAIA,aAAA,QAAA,eAAA,QAAA,aAAA,QAAA,UAAA,QAAA,aAAA,QAAA,YAAA,QAAA,WAAA,QAAA,UAAA,QAIA,iBAAA,EAAA,CAAA,GAAA,CAAA,IAAA,mBAAA,GAAA,CAAA,GAAA,CAAA,IAAA,iBAAA,EAAA,CAAA,GAAA,CAAA,GAAA,cAAA,EAAA,CAAA,GAAA,CAAA,IAAA,iBAAA,GAAA,CAAA,GAAA,CAAA,EAAA,gBAAA,GAAA,CAAA,EAAA,CAAA,GAAA,eAAA,GAAA,CAAA,GAAA,CAAA,IAAA,cAAA,EAAA,CAAA,EAAA,CAAA,GAGF,eAAA,GAAA,CAAA,GAAA,CAAA,IACA,eAAA,CAAA,CAAA,CAAA,CAAA,EACA,cAAA,EAAA,CAAA,EAAA,CAAA,GAMA,qBAAA,SAAA,CAAA,aAAA,CAAA,UAAA,CAAA,MAAA,CAAA,gBAAA,CAAA,KAAA,CAAA,WAAA,CAAA,iBAAA,CAAA,UAAA,CAAA,mBAAA,CAAA,gBAAA,CAAA,iBAAA,CAAA,mBACA,oBAAA,cAAA,CAAA,KAAA,CAAA,MAAA,CAAA,QAAA,CAAA,iBAAA,CAAA,aAAA,CAAA,UACA,cAAA,2EAQA,sBAAA,0BACA,oBAAA,KACA,sBAAA,IACA,sBAAA,IACA,gBAAA,QAIA,aAAA,KClCF,EC+CA,QADA,SD3CE,WAAA,WAeE,8CANJ,MAOM,gBAAA,QAcN,KACE,OAAA,EACA,YAAA,2BEmPI,UAAA,yBFjPJ,YAAA,2BACA,YAAA,2BACA,MAAA,qBACA,WAAA,0BACA,iBAAA,kBACA,yBAAA,KACA,4BAAA,YAUF,GACE,OAAA,KAAA,EACA,MAAA,QACA,iBAAA,aACA,OAAA,EACA,QAAA,IAGF,eACE,OAAA,IAUF,IAAA,IAAA,IAAA,IAAA,IAAA,IAAA,GAAA,GAAA,GAAA,GAAA,GAAA,GACE,WAAA,EACA,cAAA,MAGA,YAAA,IACA,YAAA,IAIF,IAAA,GEwMQ,UAAA,uBAlKJ,0BFtCJ,IAAA,GE+MQ,UAAA,QF1MR,IAAA,GEmMQ,UAAA,sBAlKJ,0BFjCJ,IAAA,GE0MQ,UAAA,MFrMR,IAAA,GE8LQ,UAAA,oBAlKJ,0BF5BJ,IAAA,GEqMQ,UAAA,SFhMR,IAAA,GEyLQ,UAAA,sBAlKJ,0BFvBJ,IAAA,GEgMQ,UAAA,QF3LR,IAAA,GEgLM,UAAA,QF3KN,IAAA,GE2KM,UAAA,KFhKN,EACE,WAAA,EACA,cAAA,KCmBF,6BDRA,YAEE,wBAAA,UAAA,OAAA,gBAAA,UAAA,OACA,OAAA,KACA,iCAAA,KAAA,yBAAA,KAMF,QACE,cAAA,KACA,WAAA,OACA,YAAA,QAMF,GCIA,GDFE,aAAA,KCQF,GDLA,GCIA,GDDE,WAAA,EACA,cAAA,KAGF,MCKA,MACA,MAFA,MDAE,cAAA,EAGF,GACE,YAAA,IAKF,GACE,cAAA,MACA,YAAA,EAMF,WACE,OAAA,EAAA,EAAA,KAQF,ECNA,ODQE,YAAA,OAQF,OAAA,ME4EM,UAAA,OFrEN,MAAA,KACE,QAAA,KACA,iBAAA,QASF,ICpBA,IDsBE,SAAA,SEwDI,UAAA,MFtDJ,YAAA,EACA,eAAA,SAGF,IAAM,OAAA,OACN,IAAM,IAAA,MAKN,EACE,MAAA,QACA,gBAAA,UAEA,QACE,MAAA,QAWF,2BAAA,iCAEE,MAAA,QACA,gBAAA,KCxBJ,KACA,ID8BA,IC7BA,KDiCE,YAAA,yBEcI,UAAA,IFZJ,UAAA,IACA,aAAA,cAOF,IACE,QAAA,MACA,WAAA,EACA,cAAA,KACA,SAAA,KEAI,UAAA,OFKJ,SELI,UAAA,QFOF,MAAA,QACA,WAAA,OAIJ,KEZM,UAAA,OFcJ,MAAA,QACA,UAAA,WAGA,OACE,MAAA,QAIJ,IACE,QAAA,MAAA,MExBI,UAAA,OF0BJ,MAAA,KACA,iBAAA,QG7SE,cAAA,MHgTF,QACE,QAAA,EE/BE,UAAA,IFiCF,YAAA,IASJ,OACE,OAAA,EAAA,EAAA,KAMF,ICjDA,IDmDE,eAAA,OAQF,MACE,aAAA,OACA,gBAAA,SAGF,QACE,YAAA,MACA,eAAA,MACA,MAAA,QACA,WAAA,KAOF,GAEE,WAAA,QACA,WAAA,qBCxDF,MAGA,GAFA,MAGA,GDuDA,MCzDA,GD+DE,aAAA,QACA,aAAA,MACA,aAAA,EAQF,MACE,QAAA,aAMF,OAEE,cAAA,EAQF,iCACE,QAAA,ECtEF,OD2EA,MCzEA,SADA,OAEA,SD6EE,OAAA,EACA,YAAA,QE9HI,UAAA,QFgIJ,YAAA,QAIF,OC5EA,OD8EE,eAAA,KAKF,cACE,OAAA,QAGF,OAGE,UAAA,OAGA,gBACE,QAAA,EAOJ,0CACE,QAAA,KClFF,cACA,aACA,cDwFA,OAIE,mBAAA,OCxFF,6BACA,4BACA,6BDyFI,sBACE,OAAA,QAON,mBACE,QAAA,EACA,aAAA,KAKF,SACE,OAAA,SAUF,SACE,UAAA,EACA,QAAA,EACA,OAAA,EACA,OAAA,EAQF,OACE,MAAA,KACA,MAAA,KACA,QAAA,EACA,cAAA,MEnNM,UAAA,sBFsNN,YAAA,QExXE,0BFiXJ,OExMQ,UAAA,QFiNN,SACE,MAAA,KChGJ,kCDuGA,uCCxGA,mCADA,+BAGA,oCAJA,6BAKA,mCD4GE,QAAA,EAGF,4BACE,OAAA,KASF,cACE,eAAA,KACA,mBAAA,UAmBF,4BACE,mBAAA,KAKF,+BACE,QAAA,EAMF,uBACE,KAAA,QAMF,6BACE,KAAA,QACA,mBAAA,OAKF,OACE,QAAA,aAKF,OACE,OAAA,EAOF,QACE,QAAA,UACA,OAAA,QAQF,SACE,eAAA,SAQF,SACE,QAAA,eInlBF,MFyQM,UAAA,QEvQJ,YAAA,IAKA,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,ME7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,QE7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,ME7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,QE7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,ME7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,QEvPR,eCrDE,aAAA,EACA,WAAA,KDyDF,aC1DE,aAAA,EACA,WAAA,KD4DF,kBACE,QAAA,aAEA,mCACE,aAAA,MAUJ,YFsNM,UAAA,OEpNJ,eAAA,UAIF,YACE,cAAA,KF+MI,UAAA,QE5MJ,wBACE,cAAA,EAIJ,mBACE,WAAA,MACA,cAAA,KFqMI,UAAA,OEnMJ,MAAA,QAEA,2BACE,QAAA,KE9FJ,WCIE,UAAA,KAGA,OAAA,KDDF,eACE,QAAA,OACA,iBAAA,KACA,OAAA,IAAA,MAAA,QHGE,cAAA,OIRF,UAAA,KAGA,OAAA,KDcF,QAEE,QAAA,aAGF,YACE,cAAA,MACA,YAAA,EAGF,gBJ+PM,UAAA,OI7PJ,MAAA,QElCA,WPqmBF,iBAGA,cACA,cACA,cAHA,cADA,eQzmBE,MAAA,KACA,cAAA,0BACA,aAAA,0BACA,aAAA,KACA,YAAA,KCwDE,yBF5CE,WAAA,cACE,UAAA,OE2CJ,yBF5CE,WAAA,cAAA,cACE,UAAA,OE2CJ,yBF5CE,WAAA,cAAA,cAAA,cACE,UAAA,OE2CJ,0BF5CE,WAAA,cAAA,cAAA,cAAA,cACE,UAAA,QE2CJ,0BF5CE,WAAA,cAAA,cAAA,cAAA,cAAA,eACE,UAAA,QGfN,KCAA,cAAA,OACA,cAAA,EACA,QAAA,KACA,UAAA,KACA,WAAA,8BACA,aAAA,+BACA,YAAA,+BDHE,OCYF,YAAA,EACA,MAAA,KACA,UAAA,KACA,cAAA,8BACA,aAAA,8BACA,WAAA,mBA+CI,KACE,KAAA,EAAA,EAAA,GAGF,iBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,cACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,UAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,UAxDV,YAAA,YAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,IAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,IAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,IAwDU,WAxDV,YAAA,aAwDU,WAxDV,YAAA,aAmEM,KXusBR,MWrsBU,cAAA,EAGF,KXusBR,MWrsBU,cAAA,EAPF,KXitBR,MW/sBU,cAAA,QAGF,KXitBR,MW/sBU,cAAA,QAPF,KX2tBR,MWztBU,cAAA,OAGF,KX2tBR,MWztBU,cAAA,OAPF,KXquBR,MWnuBU,cAAA,KAGF,KXquBR,MWnuBU,cAAA,KAPF,KX+uBR,MW7uBU,cAAA,OAGF,KX+uBR,MW7uBU,cAAA,OAPF,KXyvBR,MWvvBU,cAAA,KAGF,KXyvBR,MWvvBU,cAAA,KFzDN,yBESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QX45BR,SW15BU,cAAA,EAGF,QX45BR,SW15BU,cAAA,EAPF,QXs6BR,SWp6BU,cAAA,QAGF,QXs6BR,SWp6BU,cAAA,QAPF,QXg7BR,SW96BU,cAAA,OAGF,QXg7BR,SW96BU,cAAA,OAPF,QX07BR,SWx7BU,cAAA,KAGF,QX07BR,SWx7BU,cAAA,KAPF,QXo8BR,SWl8BU,cAAA,OAGF,QXo8BR,SWl8BU,cAAA,OAPF,QX88BR,SW58BU,cAAA,KAGF,QX88BR,SW58BU,cAAA,MFzDN,yBESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QXinCR,SW/mCU,cAAA,EAGF,QXinCR,SW/mCU,cAAA,EAPF,QX2nCR,SWznCU,cAAA,QAGF,QX2nCR,SWznCU,cAAA,QAPF,QXqoCR,SWnoCU,cAAA,OAGF,QXqoCR,SWnoCU,cAAA,OAPF,QX+oCR,SW7oCU,cAAA,KAGF,QX+oCR,SW7oCU,cAAA,KAPF,QXypCR,SWvpCU,cAAA,OAGF,QXypCR,SWvpCU,cAAA,OAPF,QXmqCR,SWjqCU,cAAA,KAGF,QXmqCR,SWjqCU,cAAA,MFzDN,yBESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QXs0CR,SWp0CU,cAAA,EAGF,QXs0CR,SWp0CU,cAAA,EAPF,QXg1CR,SW90CU,cAAA,QAGF,QXg1CR,SW90CU,cAAA,QAPF,QX01CR,SWx1CU,cAAA,OAGF,QX01CR,SWx1CU,cAAA,OAPF,QXo2CR,SWl2CU,cAAA,KAGF,QXo2CR,SWl2CU,cAAA,KAPF,QX82CR,SW52CU,cAAA,OAGF,QX82CR,SW52CU,cAAA,OAPF,QXw3CR,SWt3CU,cAAA,KAGF,QXw3CR,SWt3CU,cAAA,MFzDN,0BESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QX2hDR,SWzhDU,cAAA,EAGF,QX2hDR,SWzhDU,cAAA,EAPF,QXqiDR,SWniDU,cAAA,QAGF,QXqiDR,SWniDU,cAAA,QAPF,QX+iDR,SW7iDU,cAAA,OAGF,QX+iDR,SW7iDU,cAAA,OAPF,QXyjDR,SWvjDU,cAAA,KAGF,QXyjDR,SWvjDU,cAAA,KAPF,QXmkDR,SWjkDU,cAAA,OAGF,QXmkDR,SWjkDU,cAAA,OAPF,QX6kDR,SW3kDU,cAAA,KAGF,QX6kDR,SW3kDU,cAAA,MFzDN,0BESE,SACE,KAAA,EAAA,EAAA,GAGF,qBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,cAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,cAxDV,YAAA,EAwDU,cAxDV,YAAA,YAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,IAwDU,eAxDV,YAAA,aAwDU,eAxDV,YAAA,aAmEM,SXgvDR,UW9uDU,cAAA,EAGF,SXgvDR,UW9uDU,cAAA,EAPF,SX0vDR,UWxvDU,cAAA,QAGF,SX0vDR,UWxvDU,cAAA,QAPF,SXowDR,UWlwDU,cAAA,OAGF,SXowDR,UWlwDU,cAAA,OAPF,SX8wDR,UW5wDU,cAAA,KAGF,SX8wDR,UW5wDU,cAAA,KAPF,SXwxDR,UWtxDU,cAAA,OAGF,SXwxDR,UWtxDU,cAAA,OAPF,SXkyDR,UWhyDU,cAAA,KAGF,SXkyDR,UWhyDU,cAAA,MCpHV,OACE,cAAA,YACA,qBAAA,YACA,yBAAA,QACA,sBAAA,oBACA,wBAAA,QACA,qBAAA,mBACA,uBAAA,QACA,oBAAA,qBAEA,MAAA,KACA,cAAA,KACA,MAAA,QACA,eAAA,IACA,aAAA,QAOA,yBACE,QAAA,MAAA,MACA,iBAAA,mBACA,oBAAA,IACA,WAAA,MAAA,EAAA,EAAA,EAAA,OAAA,0BAGF,aACE,eAAA,QAGF,aACE,eAAA,OAIF,uCACE,oBAAA,aASJ,aACE,aAAA,IAUA,4BACE,QAAA,OAAA,OAeF,gCACE,aAAA,IAAA,EAGA,kCACE,aAAA,EAAA,IAOJ,oCACE,oBAAA,EASF,yCACE,qBAAA,2BACA,MAAA,8BAQJ,cACE,qBAAA,0BACA,MAAA,6BAQA,4BACE,qBAAA,yBACA,MAAA,4BCxHF,eAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,iBAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,eAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,YAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,eAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,cAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,aAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,YAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QDgIA,kBACE,WAAA,KACA,2BAAA,MHvEF,4BGqEA,qBACE,WAAA,KACA,2BAAA,OHvEF,4BGqEA,qBACE,WAAA,KACA,2BAAA,OHvEF,4BGqEA,qBACE,WAAA,KACA,2BAAA,OHvEF,6BGqEA,qBACE,WAAA,KACA,2BAAA,OHvEF,6BGqEA,sBACE,WAAA,KACA,2BAAA,OE/IN,YACE,cAAA,MASF,gBACE,YAAA,oBACA,eAAA,oBACA,cAAA,EboRI,UAAA,QahRJ,YAAA,IAIF,mBACE,YAAA,kBACA,eAAA,kBb0QI,UAAA,QatQN,mBACE,YAAA,mBACA,eAAA,mBboQI,UAAA,QcjSN,WACE,WAAA,OdgSI,UAAA,Oc5RJ,MAAA,QCLF,cACE,QAAA,MACA,MAAA,KACA,QAAA,QAAA,Of8RI,UAAA,Ke3RJ,YAAA,IACA,YAAA,IACA,MAAA,QACA,iBAAA,KACA,gBAAA,YACA,OAAA,IAAA,MAAA,QACA,mBAAA,KAAA,gBAAA,KAAA,WAAA,KdGE,cAAA,OeHE,WAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCDhBN,cCiBQ,WAAA,MDGN,yBACE,SAAA,OAEA,wDACE,OAAA,QAKJ,oBACE,MAAA,QACA,iBAAA,KACA,aAAA,QACA,QAAA,EAKE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAOJ,2CAEE,OAAA,MAIF,gCACE,MAAA,QAEA,QAAA,EAHF,2BACE,MAAA,QAEA,QAAA,EAQF,uBAAA,wBAEE,iBAAA,QAGA,QAAA,EAIF,oCACE,QAAA,QAAA,OACA,OAAA,SAAA,QACA,mBAAA,OAAA,kBAAA,OACA,MAAA,QE3EF,iBAAA,QF6EE,eAAA,KACA,aAAA,QACA,aAAA,MACA,aAAA,EACA,wBAAA,IACA,cAAA,ECtEE,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCDuDJ,oCCtDM,WAAA,MDqEN,yEACE,iBAAA,QAGF,0CACE,QAAA,QAAA,OACA,OAAA,SAAA,QACA,mBAAA,OAAA,kBAAA,OACA,MAAA,QE9FF,iBAAA,QFgGE,eAAA,KACA,aAAA,QACA,aAAA,MACA,aAAA,EACA,wBAAA,IACA,cAAA,ECzFE,mBAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAAA,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCD0EJ,0CCzEM,mBAAA,KAAA,WAAA,MDwFN,+EACE,iBAAA,QASJ,wBACE,QAAA,MACA,MAAA,KACA,QAAA,QAAA,EACA,cAAA,EACA,YAAA,IACA,MAAA,QACA,iBAAA,YACA,OAAA,MAAA,YACA,aAAA,IAAA,EAEA,wCAAA,wCAEE,cAAA,EACA,aAAA,EAWJ,iBACE,WAAA,0BACA,QAAA,OAAA,MfmJI,UAAA,QClRF,cAAA,McmIF,uCACE,QAAA,OAAA,MACA,OAAA,QAAA,OACA,mBAAA,MAAA,kBAAA,MAGF,6CACE,QAAA,OAAA,MACA,OAAA,QAAA,OACA,mBAAA,MAAA,kBAAA,MAIJ,iBACE,WAAA,yBACA,QAAA,MAAA,KfgII,UAAA,QClRF,cAAA,McsJF,uCACE,QAAA,MAAA,KACA,OAAA,OAAA,MACA,mBAAA,KAAA,kBAAA,KAGF,6CACE,QAAA,MAAA,KACA,OAAA,OAAA,MACA,mBAAA,KAAA,kBAAA,KAQF,sBACE,WAAA,2BAGF,yBACE,WAAA,0BAGF,yBACE,WAAA,yBAKJ,oBACE,MAAA,KACA,OAAA,KACA,QAAA,QAEA,mDACE,OAAA,QAGF,uCACE,OAAA,Md/LA,cAAA,OcmMF,0CACE,OAAA,MdpMA,cAAA,OiBdJ,aACE,QAAA,MACA,MAAA,KACA,QAAA,QAAA,QAAA,QAAA,OAEA,mBAAA,oBlB2RI,UAAA,KkBxRJ,YAAA,IACA,YAAA,IACA,MAAA,QACA,iBAAA,KACA,iBAAA,gOACA,kBAAA,UACA,oBAAA,MAAA,OAAA,OACA,gBAAA,KAAA,KACA,OAAA,IAAA,MAAA,QjBFE,cAAA,OeHE,WAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YESJ,mBAAA,KAAA,gBAAA,KAAA,WAAA,KFLI,uCEfN,aFgBQ,WAAA,MEMN,mBACE,aAAA,QACA,QAAA,EAKE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAIJ,uBAAA,mCAEE,cAAA,OACA,iBAAA,KAGF,sBAEE,iBAAA,QAKF,4BACE,MAAA,YACA,YAAA,EAAA,EAAA,EAAA,QAIJ,gBACE,YAAA,OACA,eAAA,OACA,aAAA,MlByOI,UAAA,QkBrON,gBACE,YAAA,MACA,eAAA,MACA,aAAA,KlBkOI,UAAA,QmBjSN,YACE,QAAA,MACA,WAAA,OACA,aAAA,MACA,cAAA,QAEA,8BACE,MAAA,KACA,YAAA,OAIJ,kBACE,MAAA,IACA,OAAA,IACA,WAAA,MACA,eAAA,IACA,iBAAA,KACA,kBAAA,UACA,oBAAA,OACA,gBAAA,QACA,OAAA,IAAA,MAAA,gBACA,mBAAA,KAAA,gBAAA,KAAA,WAAA,KACA,2BAAA,MAAA,aAAA,MAGA,iClBXE,cAAA,MkBeF,8BAEE,cAAA,IAGF,yBACE,OAAA,gBAGF,wBACE,aAAA,QACA,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBAGF,0BACE,iBAAA,QACA,aAAA,QAEA,yCAII,iBAAA,8NAIJ,sCAII,iBAAA,sIAKN,+CACE,iBAAA,QACA,aAAA,QAKE,iBAAA,wNAIJ,2BACE,eAAA,KACA,OAAA,KACA,QAAA,GAOA,6CAAA,8CACE,QAAA,GAcN,aACE,aAAA,MAEA,+BACE,MAAA,IACA,YAAA,OACA,iBAAA,uJACA,oBAAA,KAAA,OlB9FA,cAAA,IeHE,WAAA,oBAAA,KAAA,YAIA,uCGyFJ,+BHxFM,WAAA,MGgGJ,qCACE,iBAAA,yIAGF,uCACE,oBAAA,MAAA,OAKE,iBAAA,sIAMR,mBACE,QAAA,aACA,aAAA,KAGF,WACE,SAAA,SACA,KAAA,cACA,eAAA,KAIE,yBAAA,0BACE,eAAA,KACA,OAAA,KACA,QAAA,IC9IN,YACE,MAAA,KACA,OAAA,OACA,QAAA,EACA,iBAAA,YACA,mBAAA,KAAA,gBAAA,KAAA,WAAA,KAEA,kBACE,QAAA,EAIA,wCAA0B,WAAA,EAAA,EAAA,EAAA,IAAA,IAAA,CAAA,EAAA,EAAA,EAAA,OAAA,qBAC1B,oCAA0B,WAAA,EAAA,EAAA,EAAA,IAAA,IAAA,CAAA,EAAA,EAAA,EAAA,OAAA,qBAG5B,8BACE,OAAA,EAGF,kCACE,MAAA,KACA,OAAA,KACA,WAAA,QHzBF,iBAAA,QG2BE,OAAA,EnBZA,cAAA,KeHE,mBAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAAA,WAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YImBF,mBAAA,KAAA,WAAA,KJfE,uCIMJ,kCJLM,mBAAA,KAAA,WAAA,MIgBJ,yCHjCF,iBAAA,QGsCA,2CACE,MAAA,KACA,OAAA,MACA,MAAA,YACA,OAAA,QACA,iBAAA,QACA,aAAA,YnB7BA,cAAA,KmBkCF,8BACE,MAAA,KACA,OAAA,KHnDF,iBAAA,QGqDE,OAAA,EnBtCA,cAAA,KeHE,gBAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAAA,WAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YI6CF,gBAAA,KAAA,WAAA,KJzCE,uCIiCJ,8BJhCM,gBAAA,KAAA,WAAA,MI0CJ,qCH3DF,iBAAA,QGgEA,8BACE,MAAA,KACA,OAAA,MACA,MAAA,YACA,OAAA,QACA,iBAAA,QACA,aAAA,YnBvDA,cAAA,KmB4DF,qBACE,eAAA,KAEA,2CACE,iBAAA,QAGF,uCACE,iBAAA,QCvFN,eACE,SAAA,SAEA,6BtB+iFF,4BsB7iFI,OAAA,mBACA,YAAA,KAGF,qBACE,SAAA,SACA,IAAA,EACA,KAAA,EACA,OAAA,KACA,QAAA,KAAA,OACA,eAAA,KACA,OAAA,IAAA,MAAA,YACA,iBAAA,EAAA,ELDE,WAAA,QAAA,IAAA,WAAA,CAAA,UAAA,IAAA,YAIA,uCKXJ,qBLYM,WAAA,MKCN,6BACE,QAAA,KAAA,OAEA,+CACE,MAAA,YADF,0CACE,MAAA,YAGF,0DAEE,YAAA,SACA,eAAA,QAHF,mCAAA,qDAEE,YAAA,SACA,eAAA,QAGF,8CACE,YAAA,SACA,eAAA,QAIJ,4BACE,YAAA,SACA,eAAA,QAMA,gEACE,QAAA,IACA,UAAA,WAAA,mBAAA,mBAFF,yCtBmjFJ,2DACA,kCsBnjFM,QAAA,IACA,UAAA,WAAA,mBAAA,mBAKF,oDACE,QAAA,IACA,UAAA,WAAA,mBAAA,mBCtDN,aACE,SAAA,SACA,QAAA,KACA,UAAA,KACA,YAAA,QACA,MAAA,KAEA,2BvB2mFF,0BuBzmFI,SAAA,SACA,KAAA,EAAA,EAAA,KACA,MAAA,GACA,UAAA,EAIF,iCvBymFF,gCuBvmFI,QAAA,EAMF,kBACE,SAAA,SACA,QAAA,EAEA,wBACE,QAAA,EAWN,kBACE,QAAA,KACA,YAAA,OACA,QAAA,QAAA,OtBsPI,UAAA,KsBpPJ,YAAA,IACA,YAAA,IACA,MAAA,QACA,WAAA,OACA,YAAA,OACA,iBAAA,QACA,OAAA,IAAA,MAAA,QrBpCE,cAAA,OFuoFJ,qBuBzlFA,8BvBulFA,6BACA,kCuBplFE,QAAA,MAAA,KtBgOI,UAAA,QClRF,cAAA,MFgpFJ,qBuBzlFA,8BvBulFA,6BACA,kCuBplFE,QAAA,OAAA,MtBuNI,UAAA,QClRF,cAAA,MqBgEJ,6BvBulFA,6BuBrlFE,cAAA,KvB0lFF,uEuB7kFI,8FrB/DA,wBAAA,EACA,2BAAA,EFgpFJ,iEuB3kFI,2FrBtEA,wBAAA,EACA,2BAAA,EqBgFF,0IACE,YAAA,KrBpEA,uBAAA,EACA,0BAAA,EsBzBF,gBACE,QAAA,KACA,MAAA,KACA,WAAA,OvByQE,UAAA,OuBtQF,MAAA,QAGF,eACE,SAAA,SACA,IAAA,KACA,QAAA,EACA,QAAA,KACA,UAAA,KACA,QAAA,OAAA,MACA,WAAA,MvB4PE,UAAA,QuBzPF,MAAA,KACA,iBAAA,mBtB1BA,cAAA,OFmsFJ,0BACA,yBwBrqFI,sCxBmqFJ,qCwBjqFM,QAAA,MA9CF,uBAAA,mCAoDE,aAAA,QAGE,cAAA,qBACA,iBAAA,2OACA,kBAAA,UACA,oBAAA,MAAA,wBAAA,OACA,gBAAA,sBAAA,sBAGF,6BAAA,yCACE,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,OAAA,oBAhEJ,2CAAA,+BAyEI,cAAA,qBACA,oBAAA,IAAA,wBAAA,MAAA,wBA1EJ,sBAAA,kCAiFE,aAAA,QAGE,kDAAA,gDAAA,8DAAA,4DAEE,cAAA,SACA,iBAAA,+NAAA,CAAA,2OACA,oBAAA,MAAA,OAAA,MAAA,CAAA,OAAA,MAAA,QACA,gBAAA,KAAA,IAAA,CAAA,sBAAA,sBAIJ,4BAAA,wCACE,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,OAAA,oBA/FJ,2BAAA,uCAsGE,aAAA,QAEA,mCAAA,+CACE,iBAAA,QAGF,iCAAA,6CACE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAGF,6CAAA,yDACE,MAAA,QAKJ,qDACE,YAAA,KAvHF,oCxBwwFJ,mCwBxwFI,gDxBuwFJ,+CwBxoFQ,QAAA,EAIF,0CxB0oFN,yCwB1oFM,sDxByoFN,qDwBxoFQ,QAAA,EAjHN,kBACE,QAAA,KACA,MAAA,KACA,WAAA,OvByQE,UAAA,OuBtQF,MAAA,QAGF,iBACE,SAAA,SACA,IAAA,KACA,QAAA,EACA,QAAA,KACA,UAAA,KACA,QAAA,OAAA,MACA,WAAA,MvB4PE,UAAA,QuBzPF,MAAA,KACA,iBAAA,mBtB1BA,cAAA,OF4xFJ,8BACA,6BwB9vFI,0CxB4vFJ,yCwB1vFM,QAAA,MA9CF,yBAAA,qCAoDE,aAAA,QAGE,cAAA,qBACA,iBAAA,2TACA,kBAAA,UACA,oBAAA,MAAA,wBAAA,OACA,gBAAA,sBAAA,sBAGF,+BAAA,2CACE,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,OAAA,oBAhEJ,6CAAA,iCAyEI,cAAA,qBACA,oBAAA,IAAA,wBAAA,MAAA,wBA1EJ,wBAAA,oCAiFE,aAAA,QAGE,oDAAA,kDAAA,gEAAA,8DAEE,cAAA,SACA,iBAAA,+NAAA,CAAA,2TACA,oBAAA,MAAA,OAAA,MAAA,CAAA,OAAA,MAAA,QACA,gBAAA,KAAA,IAAA,CAAA,sBAAA,sBAIJ,8BAAA,0CACE,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,OAAA,oBA/FJ,6BAAA,yCAsGE,aAAA,QAEA,qCAAA,iDACE,iBAAA,QAGF,mCAAA,+CACE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAGF,+CAAA,2DACE,MAAA,QAKJ,uDACE,YAAA,KAvHF,sCxBi2FJ,qCwBj2FI,kDxBg2FJ,iDwB/tFQ,QAAA,EAEF,4CxBmuFN,2CwBnuFM,wDxBkuFN,uDwBjuFQ,QAAA,ECtIR,KACE,QAAA,aAEA,YAAA,IACA,YAAA,IACA,MAAA,QACA,WAAA,OACA,gBAAA,KAEA,eAAA,OACA,OAAA,QACA,oBAAA,KAAA,iBAAA,KAAA,YAAA,KACA,iBAAA,YACA,OAAA,IAAA,MAAA,YC8GA,QAAA,QAAA,OzBsKI,UAAA,KClRF,cAAA,OeHE,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCQhBN,KRiBQ,WAAA,MQAN,WACE,MAAA,QAIF,sBAAA,WAEE,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBAcF,cAAA,cAAA,uBAGE,eAAA,KACA,QAAA,IAYF,aCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,mBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,8BAAA,mBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAIJ,+BAAA,gCAAA,oBAAA,oBAAA,mCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,qCAAA,sCAAA,0BAAA,0BAAA,yCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,sBAAA,sBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,eCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,qBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,gCAAA,qBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAIJ,iCAAA,kCAAA,sBAAA,sBAAA,qCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,uCAAA,wCAAA,4BAAA,4BAAA,2CAKI,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKN,wBAAA,wBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,aCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,mBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,8BAAA,mBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAIJ,+BAAA,gCAAA,oBAAA,oBAAA,mCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,qCAAA,sCAAA,0BAAA,0BAAA,yCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,sBAAA,sBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,UCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,gBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,2BAAA,gBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAIJ,4BAAA,6BAAA,iBAAA,iBAAA,gCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,kCAAA,mCAAA,uBAAA,uBAAA,sCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,mBAAA,mBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,aCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,mBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,8BAAA,mBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAIJ,+BAAA,gCAAA,oBAAA,oBAAA,mCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,qCAAA,sCAAA,0BAAA,0BAAA,yCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,sBAAA,sBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,YCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,kBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,6BAAA,kBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAIJ,8BAAA,+BAAA,mBAAA,mBAAA,kCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,oCAAA,qCAAA,yBAAA,yBAAA,wCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,qBAAA,qBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,WCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,iBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,4BAAA,iBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAIJ,6BAAA,8BAAA,kBAAA,kBAAA,iCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,mCAAA,oCAAA,wBAAA,wBAAA,uCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKN,oBAAA,oBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,UCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,gBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,2BAAA,gBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,kBAIJ,4BAAA,6BAAA,iBAAA,iBAAA,gCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,kCAAA,mCAAA,uBAAA,uBAAA,sCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,kBAKN,mBAAA,mBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDNF,qBCmBA,MAAA,QACA,aAAA,QAEA,2BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,sCAAA,2BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAGF,uCAAA,wCAAA,4BAAA,0CAAA,4BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,6CAAA,8CAAA,kCAAA,gDAAA,kCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,8BAAA,8BAEE,MAAA,QACA,iBAAA,YDvDF,uBCmBA,MAAA,QACA,aAAA,QAEA,6BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,wCAAA,6BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAGF,yCAAA,0CAAA,8BAAA,4CAAA,8BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,+CAAA,gDAAA,oCAAA,kDAAA,oCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKN,gCAAA,gCAEE,MAAA,QACA,iBAAA,YDvDF,qBCmBA,MAAA,QACA,aAAA,QAEA,2BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,sCAAA,2BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAGF,uCAAA,wCAAA,4BAAA,0CAAA,4BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,6CAAA,8CAAA,kCAAA,gDAAA,kCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,8BAAA,8BAEE,MAAA,QACA,iBAAA,YDvDF,kBCmBA,MAAA,QACA,aAAA,QAEA,wBACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,mCAAA,wBAEE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAGF,oCAAA,qCAAA,yBAAA,uCAAA,yBAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,0CAAA,2CAAA,+BAAA,6CAAA,+BAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,2BAAA,2BAEE,MAAA,QACA,iBAAA,YDvDF,qBCmBA,MAAA,QACA,aAAA,QAEA,2BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,sCAAA,2BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAGF,uCAAA,wCAAA,4BAAA,0CAAA,4BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,6CAAA,8CAAA,kCAAA,gDAAA,kCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,8BAAA,8BAEE,MAAA,QACA,iBAAA,YDvDF,oBCmBA,MAAA,QACA,aAAA,QAEA,0BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,qCAAA,0BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAGF,sCAAA,uCAAA,2BAAA,yCAAA,2BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,4CAAA,6CAAA,iCAAA,+CAAA,iCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,6BAAA,6BAEE,MAAA,QACA,iBAAA,YDvDF,mBCmBA,MAAA,QACA,aAAA,QAEA,yBACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,oCAAA,yBAEE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAGF,qCAAA,sCAAA,0BAAA,wCAAA,0BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,2CAAA,4CAAA,gCAAA,8CAAA,gCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKN,4BAAA,4BAEE,MAAA,QACA,iBAAA,YDvDF,kBCmBA,MAAA,QACA,aAAA,QAEA,wBACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,mCAAA,wBAEE,WAAA,EAAA,EAAA,EAAA,OAAA,kBAGF,oCAAA,qCAAA,yBAAA,uCAAA,yBAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,0CAAA,2CAAA,+BAAA,6CAAA,+BAKI,WAAA,EAAA,EAAA,EAAA,OAAA,kBAKN,2BAAA,2BAEE,MAAA,QACA,iBAAA,YD3CJ,UACE,YAAA,IACA,MAAA,QACA,gBAAA,UAEA,gBACE,MAAA,QAQF,mBAAA,mBAEE,MAAA,QAWJ,mBAAA,QCuBE,QAAA,MAAA,KzBsKI,UAAA,QClRF,cAAA,MuByFJ,mBAAA,QCmBE,QAAA,OAAA,MzBsKI,UAAA,QClRF,cAAA,MyBnBJ,MVgBM,WAAA,QAAA,KAAA,OAIA,uCUpBN,MVqBQ,WAAA,MUlBN,iBACE,QAAA,EAMF,qBACE,QAAA,KAIJ,YACE,OAAA,EACA,SAAA,OVDI,WAAA,OAAA,KAAA,KAIA,uCULN,YVMQ,WAAA,MUDN,gCACE,MAAA,EACA,OAAA,KVNE,WAAA,MAAA,KAAA,KAIA,uCUAJ,gCVCM,WAAA,MjBs3GR,UADA,SAEA,W4B34GA,QAIE,SAAA,SAGF,iBACE,YAAA,OCqBE,wBACE,QAAA,aACA,YAAA,OACA,eAAA,OACA,QAAA,GAhCJ,WAAA,KAAA,MACA,aAAA,KAAA,MAAA,YACA,cAAA,EACA,YAAA,KAAA,MAAA,YAqDE,8BACE,YAAA,ED3CN,eACE,SAAA,SACA,QAAA,KACA,QAAA,KACA,UAAA,MACA,QAAA,MAAA,EACA,OAAA,E3B+QI,UAAA,K2B7QJ,MAAA,QACA,WAAA,KACA,WAAA,KACA,iBAAA,KACA,gBAAA,YACA,OAAA,IAAA,MAAA,gB1BVE,cAAA,O0BcF,+BACE,IAAA,KACA,KAAA,EACA,WAAA,QAYA,qBACE,cAAA,MAEA,qCACE,MAAA,KACA,KAAA,EAIJ,mBACE,cAAA,IAEA,mCACE,MAAA,EACA,KAAA,KnBCJ,yBmBfA,wBACE,cAAA,MAEA,wCACE,MAAA,KACA,KAAA,EAIJ,sBACE,cAAA,IAEA,sCACE,MAAA,EACA,KAAA,MnBCJ,yBmBfA,wBACE,cAAA,MAEA,wCACE,MAAA,KACA,KAAA,EAIJ,sBACE,cAAA,IAEA,sCACE,MAAA,EACA,KAAA,MnBCJ,yBmBfA,wBACE,cAAA,MAEA,wCACE,MAAA,KACA,KAAA,EAIJ,sBACE,cAAA,IAEA,sCACE,MAAA,EACA,KAAA,MnBCJ,0BmBfA,wBACE,cAAA,MAEA,wCACE,MAAA,KACA,KAAA,EAIJ,sBACE,cAAA,IAEA,sCACE,MAAA,EACA,KAAA,MnBCJ,0BmBfA,yBACE,cAAA,MAEA,yCACE,MAAA,KACA,KAAA,EAIJ,uBACE,cAAA,IAEA,uCACE,MAAA,EACA,KAAA,MAUN,uCACE,IAAA,KACA,OAAA,KACA,WAAA,EACA,cAAA,QC9CA,gCACE,QAAA,aACA,YAAA,OACA,eAAA,OACA,QAAA,GAzBJ,WAAA,EACA,aAAA,KAAA,MAAA,YACA,cAAA,KAAA,MACA,YAAA,KAAA,MAAA,YA8CE,sCACE,YAAA,ED0BJ,wCACE,IAAA,EACA,MAAA,KACA,KAAA,KACA,WAAA,EACA,YAAA,QC5DA,iCACE,QAAA,aACA,YAAA,OACA,eAAA,OACA,QAAA,GAlBJ,WAAA,KAAA,MAAA,YACA,aAAA,EACA,cAAA,KAAA,MAAA,YACA,YAAA,KAAA,MAuCE,uCACE,YAAA,EDoCF,iCACE,eAAA,EAMJ,0CACE,IAAA,EACA,MAAA,KACA,KAAA,KACA,WAAA,EACA,aAAA,QC7EA,mCACE,QAAA,aACA,YAAA,OACA,eAAA,OACA,QAAA,GAWA,mCACE,QAAA,KAGF,oCACE,QAAA,aACA,aAAA,OACA,eAAA,OACA,QAAA,GA9BN,WAAA,KAAA,MAAA,YACA,aAAA,KAAA,MACA,cAAA,KAAA,MAAA,YAiCE,yCACE,YAAA,EDqDF,oCACE,eAAA,EAON,kBACE,OAAA,EACA,OAAA,MAAA,EACA,SAAA,OACA,WAAA,IAAA,MAAA,gBAMF,eACE,QAAA,MACA,MAAA,KACA,QAAA,OAAA,KACA,MAAA,KACA,YAAA,IACA,MAAA,QACA,WAAA,QACA,gBAAA,KACA,YAAA,OACA,iBAAA,YACA,OAAA,EAcA,qBAAA,qBAEE,MAAA,QVzJF,iBAAA,QU8JA,sBAAA,sBAEE,MAAA,KACA,gBAAA,KVjKF,iBAAA,QUqKA,wBAAA,wBAEE,MAAA,QACA,eAAA,KACA,iBAAA,YAMJ,oBACE,QAAA,MAIF,iBACE,QAAA,MACA,QAAA,MAAA,KACA,cAAA,E3B0GI,UAAA,Q2BxGJ,MAAA,QACA,YAAA,OAIF,oBACE,QAAA,MACA,QAAA,OAAA,KACA,MAAA,QAIF,oBACE,MAAA,QACA,iBAAA,QACA,aAAA,gBAGA,mCACE,MAAA,QAEA,yCAAA,yCAEE,MAAA,KVhNJ,iBAAA,sBUoNE,0CAAA,0CAEE,MAAA,KVtNJ,iBAAA,QU0NE,4CAAA,4CAEE,MAAA,QAIJ,sCACE,aAAA,gBAGF,wCACE,MAAA,QAGF,qCACE,MAAA,QE5OJ,W9B2rHA,oB8BzrHE,SAAA,SACA,QAAA,YACA,eAAA,O9B6rHF,yB8B3rHE,gBACE,SAAA,SACA,KAAA,EAAA,EAAA,K9BmsHJ,4CACA,0CAIA,gCADA,gCADA,+BADA,+B8BhsHE,mC9ByrHF,iCAIA,uBADA,uBADA,sBADA,sB8BprHI,QAAA,EAKJ,aACE,QAAA,KACA,UAAA,KACA,gBAAA,WAEA,0BACE,MAAA,K9BgsHJ,wC8B1rHE,kCAEE,YAAA,K9B4rHJ,4C8BxrHE,uD5BRE,wBAAA,EACA,2BAAA,EFqsHJ,6C8BrrHE,+B9BorHF,iCEvrHI,uBAAA,EACA,0BAAA,E4BqBJ,uBACE,cAAA,SACA,aAAA,SAEA,8BAAA,uCAAA,sCAGE,YAAA,EAGF,0CACE,aAAA,EAIJ,0CAAA,+BACE,cAAA,QACA,aAAA,QAGF,0CAAA,+BACE,cAAA,OACA,aAAA,OAoBF,oBACE,eAAA,OACA,YAAA,WACA,gBAAA,OAEA,yB9BmpHF,+B8BjpHI,MAAA,K9BqpHJ,iD8BlpHE,2CAEE,WAAA,K9BopHJ,qD8BhpHE,gE5BvFE,2BAAA,EACA,0BAAA,EF2uHJ,sD8BhpHE,8B5B1GE,uBAAA,EACA,wBAAA,E6BxBJ,KACE,QAAA,KACA,UAAA,KACA,aAAA,EACA,cAAA,EACA,WAAA,KAGF,UACE,QAAA,MACA,QAAA,MAAA,KAGA,MAAA,QACA,gBAAA,KdHI,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,YAIA,uCcPN,UdQQ,WAAA,McCN,gBAAA,gBAEE,MAAA,QAKF,mBACE,MAAA,QACA,eAAA,KACA,OAAA,QAQJ,UACE,cAAA,IAAA,MAAA,QAEA,oBACE,cAAA,KACA,WAAA,IACA,OAAA,IAAA,MAAA,Y7BlBA,uBAAA,OACA,wBAAA,O6BoBA,0BAAA,0BAEE,aAAA,QAAA,QAAA,QAEA,UAAA,QAGF,6BACE,MAAA,QACA,iBAAA,YACA,aAAA,Y/BixHN,mC+B7wHE,2BAEE,MAAA,QACA,iBAAA,KACA,aAAA,QAAA,QAAA,KAGF,yBAEE,WAAA,K7B5CA,uBAAA,EACA,wBAAA,E6BuDF,qBACE,WAAA,IACA,OAAA,E7BnEA,cAAA,O6BuEF,4B/BmwHF,2B+BjwHI,MAAA,KbxFF,iBAAA,QlB+1HF,oB+B5vHE,oBAEE,KAAA,EAAA,EAAA,KACA,WAAA,O/B+vHJ,yB+B1vHE,yBAEE,WAAA,EACA,UAAA,EACA,WAAA,OAMF,8B/BuvHF,mC+BtvHI,MAAA,KAUF,uBACE,QAAA,KAEF,qBACE,QAAA,MCxHJ,QACE,SAAA,SACA,QAAA,KACA,UAAA,KACA,YAAA,OACA,gBAAA,cACA,YAAA,MAEA,eAAA,MAOA,mBhCs2HF,yBAGA,sBADA,sBADA,sBAGA,sBACA,uBgC12HI,QAAA,KACA,UAAA,QACA,YAAA,OACA,gBAAA,cAoBJ,cACE,YAAA,SACA,eAAA,SACA,aAAA,K/B2OI,UAAA,Q+BzOJ,gBAAA,KACA,YAAA,OAaF,YACE,QAAA,KACA,eAAA,OACA,aAAA,EACA,cAAA,EACA,WAAA,KAEA,sBACE,cAAA,EACA,aAAA,EAGF,2BACE,SAAA,OASJ,aACE,YAAA,MACA,eAAA,MAYF,iBACE,WAAA,KACA,UAAA,EAGA,YAAA,OAIF,gBACE,QAAA,OAAA,O/B6KI,UAAA,Q+B3KJ,YAAA,EACA,iBAAA,YACA,OAAA,IAAA,MAAA,Y9BzGE,cAAA,OeHE,WAAA,WAAA,KAAA,YAIA,uCemGN,gBflGQ,WAAA,Me2GN,sBACE,gBAAA,KAGF,sBACE,gBAAA,KACA,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAMJ,qBACE,QAAA,aACA,MAAA,MACA,OAAA,MACA,eAAA,OACA,kBAAA,UACA,oBAAA,OACA,gBAAA,KAGF,mBACE,WAAA,6BACA,WAAA,KvB1FE,yBuBsGA,kBAEI,UAAA,OACA,gBAAA,WAEA,8BACE,eAAA,IAEA,6CACE,SAAA,SAGF,wCACE,cAAA,MACA,aAAA,MAIJ,qCACE,SAAA,QAGF,mCACE,QAAA,eACA,WAAA,KAGF,kCACE,QAAA,KAGF,oCACE,QAAA,KAGF,6BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhC+yHV,oCgC7yHQ,iCAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,kCACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,SvBhKN,yBuBsGA,kBAEI,UAAA,OACA,gBAAA,WAEA,8BACE,eAAA,IAEA,6CACE,SAAA,SAGF,wCACE,cAAA,MACA,aAAA,MAIJ,qCACE,SAAA,QAGF,mCACE,QAAA,eACA,WAAA,KAGF,kCACE,QAAA,KAGF,oCACE,QAAA,KAGF,6BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhCo2HV,oCgCl2HQ,iCAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,kCACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,SvBhKN,yBuBsGA,kBAEI,UAAA,OACA,gBAAA,WAEA,8BACE,eAAA,IAEA,6CACE,SAAA,SAGF,wCACE,cAAA,MACA,aAAA,MAIJ,qCACE,SAAA,QAGF,mCACE,QAAA,eACA,WAAA,KAGF,kCACE,QAAA,KAGF,oCACE,QAAA,KAGF,6BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhCy5HV,oCgCv5HQ,iCAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,kCACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,SvBhKN,0BuBsGA,kBAEI,UAAA,OACA,gBAAA,WAEA,8BACE,eAAA,IAEA,6CACE,SAAA,SAGF,wCACE,cAAA,MACA,aAAA,MAIJ,qCACE,SAAA,QAGF,mCACE,QAAA,eACA,WAAA,KAGF,kCACE,QAAA,KAGF,oCACE,QAAA,KAGF,6BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhC88HV,oCgC58HQ,iCAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,kCACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,SvBhKN,0BuBsGA,mBAEI,UAAA,OACA,gBAAA,WAEA,+BACE,eAAA,IAEA,8CACE,SAAA,SAGF,yCACE,cAAA,MACA,aAAA,MAIJ,sCACE,SAAA,QAGF,oCACE,QAAA,eACA,WAAA,KAGF,mCACE,QAAA,KAGF,qCACE,QAAA,KAGF,8BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhCmgIV,qCgCjgIQ,kCAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,mCACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,SA1DN,eAEI,UAAA,OACA,gBAAA,WAEA,2BACE,eAAA,IAEA,0CACE,SAAA,SAGF,qCACE,cAAA,MACA,aAAA,MAIJ,kCACE,SAAA,QAGF,gCACE,QAAA,eACA,WAAA,KAGF,+BACE,QAAA,KAGF,iCACE,QAAA,KAGF,0BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhCujIV,iCgCrjIQ,8BAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,+BACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,QAcR,4BACE,MAAA,eAEA,kCAAA,kCAEE,MAAA,eAKF,oCACE,MAAA,gBAEA,0CAAA,0CAEE,MAAA,eAGF,6CACE,MAAA,ehCqiIR,2CgCjiII,0CAEE,MAAA,eAIJ,8BACE,MAAA,gBACA,aAAA,eAGF,mCACE,iBAAA,4OAGF,2BACE,MAAA,gBAEA,6BhC8hIJ,mCADA,mCgC1hIM,MAAA,eAOJ,2BACE,MAAA,KAEA,iCAAA,iCAEE,MAAA,KAKF,mCACE,MAAA,sBAEA,yCAAA,yCAEE,MAAA,sBAGF,4CACE,MAAA,sBhCqhIR,0CgCjhII,yCAEE,MAAA,KAIJ,6BACE,MAAA,sBACA,aAAA,qBAGF,kCACE,iBAAA,kPAGF,0BACE,MAAA,sBACA,4BhC+gIJ,kCADA,kCgC3gIM,MAAA,KCvUN,MACE,SAAA,SACA,QAAA,KACA,eAAA,OACA,UAAA,EAEA,UAAA,WACA,iBAAA,KACA,gBAAA,WACA,OAAA,IAAA,MAAA,iB/BME,cAAA,O+BFF,SACE,aAAA,EACA,YAAA,EAGF,kBACE,WAAA,QACA,cAAA,QAEA,8BACE,iBAAA,E/BCF,uBAAA,mBACA,wBAAA,mB+BEA,6BACE,oBAAA,E/BUF,2BAAA,mBACA,0BAAA,mB+BJF,+BjCk1IF,+BiCh1II,WAAA,EAIJ,WAGE,KAAA,EAAA,EAAA,KACA,QAAA,KAAA,KAIF,YACE,cAAA,MAGF,eACE,WAAA,QACA,cAAA,EAGF,sBACE,cAAA,EAQA,sBACE,YAAA,KAQJ,aACE,QAAA,MAAA,KACA,cAAA,EAEA,iBAAA,gBACA,cAAA,IAAA,MAAA,iBAEA,yB/BpEE,cAAA,mBAAA,mBAAA,EAAA,E+ByEJ,aACE,QAAA,MAAA,KAEA,iBAAA,gBACA,WAAA,IAAA,MAAA,iBAEA,wB/B/EE,cAAA,EAAA,EAAA,mBAAA,mB+ByFJ,kBACE,aAAA,OACA,cAAA,OACA,YAAA,OACA,cAAA,EAUF,mBACE,aAAA,OACA,YAAA,OAIF,kBACE,SAAA,SACA,IAAA,EACA,MAAA,EACA,OAAA,EACA,KAAA,EACA,QAAA,K/BnHE,cAAA,mB+BuHJ,UjCozIA,iBADA,ciChzIE,MAAA,KAGF,UjCmzIA,cEv6II,uBAAA,mBACA,wBAAA,mB+BwHJ,UjCozIA,iBE/5II,2BAAA,mBACA,0BAAA,mB+BuHF,kBACE,cAAA,OxBpGA,yBwBgGJ,YAQI,QAAA,KACA,UAAA,IAAA,KAGA,kBAEE,KAAA,EAAA,EAAA,GACA,cAAA,EAEA,wBACE,YAAA,EACA,YAAA,EAKA,mC/BpJJ,wBAAA,EACA,2BAAA,EF+7IJ,gDiCzyIU,iDAGE,wBAAA,EjC0yIZ,gDiCxyIU,oDAGE,2BAAA,EAIJ,oC/BrJJ,uBAAA,EACA,0BAAA,EF67IJ,iDiCtyIU,kDAGE,uBAAA,EjCuyIZ,iDiCryIU,qDAGE,0BAAA,GC7MZ,kBACE,SAAA,SACA,QAAA,KACA,YAAA,OACA,MAAA,KACA,QAAA,KAAA,QjC4RI,UAAA,KiC1RJ,MAAA,QACA,WAAA,KACA,iBAAA,KACA,OAAA,EhCKE,cAAA,EgCHF,gBAAA,KjBAI,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,WAAA,CAAA,cAAA,KAAA,KAIA,uCiBhBN,kBjBiBQ,WAAA,MiBFN,kCACE,MAAA,QACA,iBAAA,QACA,WAAA,MAAA,EAAA,KAAA,EAAA,iBAEA,yCACE,iBAAA,gRACA,UAAA,gBAKJ,yBACE,YAAA,EACA,MAAA,QACA,OAAA,QACA,YAAA,KACA,QAAA,GACA,iBAAA,gRACA,kBAAA,UACA,gBAAA,QjBvBE,WAAA,UAAA,IAAA,YAIA,uCiBWJ,yBjBVM,WAAA,MiBsBN,wBACE,QAAA,EAGF,wBACE,QAAA,EACA,aAAA,QACA,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBAIJ,kBACE,cAAA,EAGF,gBACE,iBAAA,KACA,OAAA,IAAA,MAAA,iBAEA,8BhCnCE,uBAAA,OACA,wBAAA,OgCqCA,gDhCtCA,uBAAA,mBACA,wBAAA,mBgC0CF,oCACE,WAAA,EAIF,6BhClCE,2BAAA,OACA,0BAAA,OgCqCE,yDhCtCF,2BAAA,mBACA,0BAAA,mBgC0CA,iDhC3CA,2BAAA,OACA,0BAAA,OgCgDJ,gBACE,QAAA,KAAA,QASA,qCACE,aAAA,EAGF,iCACE,aAAA,EACA,YAAA,EhCxFA,cAAA,EgC2FA,6CAAgB,WAAA,EAChB,4CAAe,cAAA,EAEf,mDhC9FA,cAAA,EiCnBJ,YACE,QAAA,KACA,UAAA,KACA,QAAA,EAAA,EACA,cAAA,KAEA,WAAA,KAOA,kCACE,aAAA,MAEA,0CACE,MAAA,KACA,cAAA,MACA,MAAA,QACA,QAAA,kCAIJ,wBACE,MAAA,QCzBJ,YACE,QAAA,KhCGA,aAAA,EACA,WAAA,KgCAF,WACE,SAAA,SACA,QAAA,MACA,MAAA,QACA,gBAAA,KACA,iBAAA,KACA,OAAA,IAAA,MAAA,QnBKI,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCmBfN,WnBgBQ,WAAA,MmBPN,iBACE,QAAA,EACA,MAAA,QAEA,iBAAA,QACA,aAAA,QAGF,iBACE,QAAA,EACA,MAAA,QACA,iBAAA,QACA,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKF,wCACE,YAAA,KAGF,6BACE,QAAA,EACA,MAAA,KlBlCF,iBAAA,QkBoCE,aAAA,QAGF,+BACE,MAAA,QACA,eAAA,KACA,iBAAA,KACA,aAAA,QC3CF,WACE,QAAA,QAAA,OAOI,kCnCqCJ,uBAAA,OACA,0BAAA,OmChCI,iCnCiBJ,wBAAA,OACA,2BAAA,OmChCF,0BACE,QAAA,OAAA,OpCgSE,UAAA,QoCzRE,iDnCqCJ,uBAAA,MACA,0BAAA,MmChCI,gDnCiBJ,wBAAA,MACA,2BAAA,MmChCF,0BACE,QAAA,OAAA,MpCgSE,UAAA,QoCzRE,iDnCqCJ,uBAAA,MACA,0BAAA,MmChCI,gDnCiBJ,wBAAA,MACA,2BAAA,MoC/BJ,OACE,QAAA,aACA,QAAA,MAAA,MrC8RI,UAAA,MqC5RJ,YAAA,IACA,YAAA,EACA,MAAA,KACA,WAAA,OACA,YAAA,OACA,eAAA,SpCKE,cAAA,OoCAF,aACE,QAAA,KAKJ,YACE,SAAA,SACA,IAAA,KCvBF,OACE,SAAA,SACA,QAAA,KAAA,KACA,cAAA,KACA,OAAA,IAAA,MAAA,YrCWE,cAAA,OqCNJ,eAEE,MAAA,QAIF,YACE,YAAA,IAQF,mBACE,cAAA,KAGA,8BACE,SAAA,SACA,IAAA,EACA,MAAA,EACA,QAAA,EACA,QAAA,QAAA,KAeF,eClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,2BACE,MAAA,QD6CF,iBClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,6BACE,MAAA,QD6CF,eClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,2BACE,MAAA,QD6CF,YClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,wBACE,MAAA,QD6CF,eClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,2BACE,MAAA,QD6CF,cClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,0BACE,MAAA,QD6CF,aClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,yBACE,MAAA,QD6CF,YClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,wBACE,MAAA,QCHF,wCACE,GAAK,sBAAA,MADP,gCACE,GAAK,sBAAA,MAKT,UACE,QAAA,KACA,OAAA,KACA,SAAA,OxCwRI,UAAA,OwCtRJ,iBAAA,QvCIE,cAAA,OuCCJ,cACE,QAAA,KACA,eAAA,OACA,gBAAA,OACA,SAAA,OACA,MAAA,KACA,WAAA,OACA,YAAA,OACA,iBAAA,QxBZI,WAAA,MAAA,IAAA,KAIA,uCwBAN,cxBCQ,WAAA,MwBWR,sBvBYE,iBAAA,iKuBVA,gBAAA,KAAA,KAIA,uBACE,kBAAA,GAAA,OAAA,SAAA,qBAAA,UAAA,GAAA,OAAA,SAAA,qBAGE,uCAJJ,uBAKM,kBAAA,KAAA,UAAA,MCvCR,YACE,QAAA,KACA,eAAA,OAGA,aAAA,EACA,cAAA,ExCSE,cAAA,OwCLJ,qBACE,gBAAA,KACA,cAAA,QAEA,gCAEE,QAAA,uBAAA,KACA,kBAAA,QAUJ,wBACE,MAAA,KACA,MAAA,QACA,WAAA,QAGA,8BAAA,8BAEE,QAAA,EACA,MAAA,QACA,gBAAA,KACA,iBAAA,QAGF,+BACE,MAAA,QACA,iBAAA,QASJ,iBACE,SAAA,SACA,QAAA,MACA,QAAA,MAAA,KACA,MAAA,QACA,gBAAA,KACA,iBAAA,KACA,OAAA,IAAA,MAAA,iBAEA,6BxCrCE,uBAAA,QACA,wBAAA,QwCwCF,4BxC3BE,2BAAA,QACA,0BAAA,QwC8BF,0BAAA,0BAEE,MAAA,QACA,eAAA,KACA,iBAAA,KAIF,wBACE,QAAA,EACA,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,kCACE,iBAAA,EAEA,yCACE,WAAA,KACA,iBAAA,IAcF,uBACE,eAAA,IAGE,oDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,mDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,+CACE,WAAA,EAGF,yDACE,iBAAA,IACA,kBAAA,EAEA,gEACE,YAAA,KACA,kBAAA,IjCpER,yBiC4CA,0BACE,eAAA,IAGE,uDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,sDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,kDACE,WAAA,EAGF,4DACE,iBAAA,IACA,kBAAA,EAEA,mEACE,YAAA,KACA,kBAAA,KjCpER,yBiC4CA,0BACE,eAAA,IAGE,uDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,sDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,kDACE,WAAA,EAGF,4DACE,iBAAA,IACA,kBAAA,EAEA,mEACE,YAAA,KACA,kBAAA,KjCpER,yBiC4CA,0BACE,eAAA,IAGE,uDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,sDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,kDACE,WAAA,EAGF,4DACE,iBAAA,IACA,kBAAA,EAEA,mEACE,YAAA,KACA,kBAAA,KjCpER,0BiC4CA,0BACE,eAAA,IAGE,uDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,sDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,kDACE,WAAA,EAGF,4DACE,iBAAA,IACA,kBAAA,EAEA,mEACE,YAAA,KACA,kBAAA,KjCpER,0BiC4CA,2BACE,eAAA,IAGE,wDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,uDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,mDACE,WAAA,EAGF,6DACE,iBAAA,IACA,kBAAA,EAEA,oEACE,YAAA,KACA,kBAAA,KAcZ,kBxC9HI,cAAA,EwCiIF,mCACE,aAAA,EAAA,EAAA,IAEA,8CACE,oBAAA,ECpJJ,yBACE,MAAA,QACA,iBAAA,QAGE,sDAAA,sDAEE,MAAA,QACA,iBAAA,QAGF,uDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,2BACE,MAAA,QACA,iBAAA,QAGE,wDAAA,wDAEE,MAAA,QACA,iBAAA,QAGF,yDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,yBACE,MAAA,QACA,iBAAA,QAGE,sDAAA,sDAEE,MAAA,QACA,iBAAA,QAGF,uDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,sBACE,MAAA,QACA,iBAAA,QAGE,mDAAA,mDAEE,MAAA,QACA,iBAAA,QAGF,oDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,yBACE,MAAA,QACA,iBAAA,QAGE,sDAAA,sDAEE,MAAA,QACA,iBAAA,QAGF,uDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,wBACE,MAAA,QACA,iBAAA,QAGE,qDAAA,qDAEE,MAAA,QACA,iBAAA,QAGF,sDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,uBACE,MAAA,QACA,iBAAA,QAGE,oDAAA,oDAEE,MAAA,QACA,iBAAA,QAGF,qDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,sBACE,MAAA,QACA,iBAAA,QAGE,mDAAA,mDAEE,MAAA,QACA,iBAAA,QAGF,oDACE,MAAA,KACA,iBAAA,QACA,aAAA,QCbR,WACE,WAAA,YACA,MAAA,IACA,OAAA,IACA,QAAA,MAAA,MACA,MAAA,KACA,WAAA,YAAA,0TAAA,MAAA,CAAA,IAAA,KAAA,UACA,OAAA,E1COE,cAAA,O0CLF,QAAA,GAGA,iBACE,MAAA,KACA,gBAAA,KACA,QAAA,IAGF,iBACE,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBACA,QAAA,EAGF,oBAAA,oBAEE,eAAA,KACA,oBAAA,KAAA,iBAAA,KAAA,YAAA,KACA,QAAA,IAIJ,iBACE,OAAA,UAAA,gBAAA,iBCtCF,OACE,MAAA,MACA,UAAA,K5CmSI,UAAA,Q4ChSJ,eAAA,KACA,iBAAA,sBACA,gBAAA,YACA,OAAA,IAAA,MAAA,eACA,WAAA,EAAA,MAAA,KAAA,gB3CUE,cAAA,O2CPF,eACE,QAAA,EAGF,kBACE,QAAA,KAIJ,iBACE,MAAA,oBAAA,MAAA,iBAAA,MAAA,YACA,UAAA,KACA,eAAA,KAEA,mCACE,cAAA,OAIJ,cACE,QAAA,KACA,YAAA,OACA,QAAA,MAAA,OACA,MAAA,QACA,iBAAA,sBACA,gBAAA,YACA,cAAA,IAAA,MAAA,gB3CVE,uBAAA,mBACA,wBAAA,mB2CYF,yBACE,aAAA,SACA,YAAA,OAIJ,YACE,QAAA,OACA,UAAA,WC1CF,OACE,SAAA,MACA,IAAA,EACA,KAAA,EACA,QAAA,KACA,QAAA,KACA,MAAA,KACA,OAAA,KACA,WAAA,OACA,WAAA,KAGA,QAAA,EAOF,cACE,SAAA,SACA,MAAA,KACA,OAAA,MAEA,eAAA,KAGA,0B7BlBI,WAAA,UAAA,IAAA,S6BoBF,UAAA,mB7BhBE,uC6BcJ,0B7BbM,WAAA,M6BiBN,0BACE,UAAA,KAIF,kCACE,UAAA,YAIJ,yBACE,OAAA,kBAEA,wCACE,WAAA,KACA,SAAA,OAGF,qCACE,WAAA,KAIJ,uBACE,QAAA,KACA,YAAA,OACA,WAAA,kBAIF,eACE,SAAA,SACA,QAAA,KACA,eAAA,OACA,MAAA,KAGA,eAAA,KACA,iBAAA,KACA,gBAAA,YACA,OAAA,IAAA,MAAA,e5C3DE,cAAA,M4C+DF,QAAA,EAIF,gBCpFE,SAAA,MACA,IAAA,EACA,KAAA,EACA,QAAA,KACA,MAAA,MACA,OAAA,MACA,iBAAA,KAGA,qBAAS,QAAA,EACT,qBAAS,QAAA,GDgFX,cACE,QAAA,KACA,YAAA,EACA,YAAA,OACA,gBAAA,cACA,QAAA,KAAA,KACA,cAAA,IAAA,MAAA,Q5CtEE,uBAAA,kBACA,wBAAA,kB4CwEF,yBACE,QAAA,MAAA,MACA,OAAA,OAAA,OAAA,OAAA,KAKJ,aACE,cAAA,EACA,YAAA,IAKF,YACE,SAAA,SAGA,KAAA,EAAA,EAAA,KACA,QAAA,KAIF,cACE,QAAA,KACA,UAAA,KACA,YAAA,EACA,YAAA,OACA,gBAAA,SACA,QAAA,OACA,WAAA,IAAA,MAAA,Q5CzFE,2BAAA,kBACA,0BAAA,kB4C8FF,gBACE,OAAA,OrC3EA,yBqCkFF,cACE,UAAA,MACA,OAAA,QAAA,KAGF,yBACE,OAAA,oBAGF,uBACE,WAAA,oBAOF,UAAY,UAAA,OrCnGV,yBqCuGF,U9CywKF,U8CvwKI,UAAA,OrCzGA,0BqC8GF,UAAY,UAAA,QASV,kBACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,iCACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,gC5C/KF,cAAA,E4CmLE,8BACE,WAAA,KAGF,gC5CvLF,cAAA,EOyDA,4BqC0GA,0BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,yCACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,wC5C/KF,cAAA,E4CmLE,sCACE,WAAA,KAGF,wC5CvLF,cAAA,GOyDA,4BqC0GA,0BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,yCACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,wC5C/KF,cAAA,E4CmLE,sCACE,WAAA,KAGF,wC5CvLF,cAAA,GOyDA,4BqC0GA,0BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,yCACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,wC5C/KF,cAAA,E4CmLE,sCACE,WAAA,KAGF,wC5CvLF,cAAA,GOyDA,6BqC0GA,0BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,yCACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,wC5C/KF,cAAA,E4CmLE,sCACE,WAAA,KAGF,wC5CvLF,cAAA,GOyDA,6BqC0GA,2BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,0CACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,yC5C/KF,cAAA,E4CmLE,uCACE,WAAA,KAGF,yC5CvLF,cAAA,G8ClBJ,SACE,SAAA,SACA,QAAA,KACA,QAAA,MACA,OAAA,ECJA,YAAA,0BAEA,WAAA,OACA,YAAA,IACA,YAAA,IACA,WAAA,KACA,WAAA,MACA,gBAAA,KACA,YAAA,KACA,eAAA,KACA,eAAA,OACA,WAAA,OACA,aAAA,OACA,YAAA,OACA,WAAA,KhDsRI,UAAA,Q+C1RJ,UAAA,WACA,QAAA,EAEA,cAAS,QAAA,GAET,wBACE,SAAA,SACA,QAAA,MACA,MAAA,MACA,OAAA,MAEA,gCACE,SAAA,SACA,QAAA,GACA,aAAA,YACA,aAAA,MAKN,6CAAA,gBACE,QAAA,MAAA,EAEA,4DAAA,+BACE,OAAA,EAEA,oEAAA,uCACE,IAAA,KACA,aAAA,MAAA,MAAA,EACA,iBAAA,KAKN,+CAAA,gBACE,QAAA,EAAA,MAEA,8DAAA,+BACE,KAAA,EACA,MAAA,MACA,OAAA,MAEA,sEAAA,uCACE,MAAA,KACA,aAAA,MAAA,MAAA,MAAA,EACA,mBAAA,KAKN,gDAAA,mBACE,QAAA,MAAA,EAEA,+DAAA,kCACE,IAAA,EAEA,uEAAA,0CACE,OAAA,KACA,aAAA,EAAA,MAAA,MACA,oBAAA,KAKN,8CAAA,kBACE,QAAA,EAAA,MAEA,6DAAA,iCACE,MAAA,EACA,MAAA,MACA,OAAA,MAEA,qEAAA,yCACE,KAAA,KACA,aAAA,MAAA,EAAA,MAAA,MACA,kBAAA,KAqBN,eACE,UAAA,MACA,QAAA,OAAA,MACA,MAAA,KACA,WAAA,OACA,iBAAA,K9C7FE,cAAA,OgDnBJ,SACE,SAAA,SACA,IAAA,EACA,KAAA,EACA,QAAA,KACA,QAAA,MACA,UAAA,MDLA,YAAA,0BAEA,WAAA,OACA,YAAA,IACA,YAAA,IACA,WAAA,KACA,WAAA,MACA,gBAAA,KACA,YAAA,KACA,eAAA,KACA,eAAA,OACA,WAAA,OACA,aAAA,OACA,YAAA,OACA,WAAA,KhDsRI,UAAA,QiDzRJ,UAAA,WACA,iBAAA,KACA,gBAAA,YACA,OAAA,IAAA,MAAA,ehDIE,cAAA,MgDAF,wBACE,SAAA,SACA,QAAA,MACA,MAAA,KACA,OAAA,MAEA,+BAAA,gCAEE,SAAA,SACA,QAAA,MACA,QAAA,GACA,aAAA,YACA,aAAA,MAMJ,4DAAA,+BACE,OAAA,mBAEA,oEAAA,uCACE,OAAA,EACA,aAAA,MAAA,MAAA,EACA,iBAAA,gBAGF,mEAAA,sCACE,OAAA,IACA,aAAA,MAAA,MAAA,EACA,iBAAA,KAMJ,8DAAA,+BACE,KAAA,mBACA,MAAA,MACA,OAAA,KAEA,sEAAA,uCACE,KAAA,EACA,aAAA,MAAA,MAAA,MAAA,EACA,mBAAA,gBAGF,qEAAA,sCACE,KAAA,IACA,aAAA,MAAA,MAAA,MAAA,EACA,mBAAA,KAMJ,+DAAA,kCACE,IAAA,mBAEA,uEAAA,0CACE,IAAA,EACA,aAAA,EAAA,MAAA,MAAA,MACA,oBAAA,gBAGF,sEAAA,yCACE,IAAA,IACA,aAAA,EAAA,MAAA,MAAA,MACA,oBAAA,KAKJ,wEAAA,2CACE,SAAA,SACA,IAAA,EACA,KAAA,IACA,QAAA,MACA,MAAA,KACA,YAAA,OACA,QAAA,GACA,cAAA,IAAA,MAAA,QAKF,6DAAA,iCACE,MAAA,mBACA,MAAA,MACA,OAAA,KAEA,qEAAA,yCACE,MAAA,EACA,aAAA,MAAA,EAAA,MAAA,MACA,kBAAA,gBAGF,oEAAA,wCACE,MAAA,IACA,aAAA,MAAA,EAAA,MAAA,MACA,kBAAA,KAqBN,gBACE,QAAA,MAAA,KACA,cAAA,EjDuJI,UAAA,KiDpJJ,iBAAA,QACA,cAAA,IAAA,MAAA,ehDtHE,uBAAA,kBACA,wBAAA,kBgDwHF,sBACE,QAAA,KAIJ,cACE,QAAA,KAAA,KACA,MAAA,QC/IF,UACE,SAAA,SAGF,wBACE,aAAA,MAGF,gBACE,SAAA,SACA,MAAA,KACA,SAAA,OCtBA,uBACE,QAAA,MACA,MAAA,KACA,QAAA,GDuBJ,eACE,SAAA,SACA,QAAA,KACA,MAAA,KACA,MAAA,KACA,aAAA,MACA,4BAAA,OAAA,oBAAA,OlClBI,WAAA,UAAA,IAAA,YAIA,uCkCQN,elCPQ,WAAA,MjBgzLR,oBACA,oBmDhyLA,sBAGE,QAAA,MnDmyLF,0BmD/xLA,8CAEE,UAAA,iBnDkyLF,4BmD/xLA,4CAEE,UAAA,kBAWA,8BACE,QAAA,EACA,oBAAA,QACA,UAAA,KnD0xLJ,uDACA,qDmDxxLE,qCAGE,QAAA,EACA,QAAA,EnDyxLJ,yCmDtxLE,2CAEE,QAAA,EACA,QAAA,ElC/DE,WAAA,QAAA,GAAA,IAIA,uCjBq1LN,yCmD7xLE,2ClCvDM,WAAA,MjB01LR,uBmDtxLA,uBAEE,SAAA,SACA,IAAA,EACA,OAAA,EACA,QAAA,EAEA,QAAA,KACA,YAAA,OACA,gBAAA,OACA,MAAA,IACA,QAAA,EACA,MAAA,KACA,WAAA,OACA,WAAA,IACA,OAAA,EACA,QAAA,GlCzFI,WAAA,QAAA,KAAA,KAIA,uCjB82LN,uBmDzyLA,uBlCpEQ,WAAA,MjBm3LR,6BADA,6BmD1xLE,6BAAA,6BAEE,MAAA,KACA,gBAAA,KACA,QAAA,EACA,QAAA,GAGJ,uBACE,KAAA,EAGF,uBACE,MAAA,EnD8xLF,4BmDzxLA,4BAEE,QAAA,aACA,MAAA,KACA,OAAA,KACA,kBAAA,UACA,oBAAA,IACA,gBAAA,KAAA,KAWF,4BACE,iBAAA,wPAEF,4BACE,iBAAA,yPAQF,qBACE,SAAA,SACA,MAAA,EACA,OAAA,EACA,KAAA,EACA,QAAA,EACA,QAAA,KACA,gBAAA,OACA,QAAA,EAEA,aAAA,IACA,cAAA,KACA,YAAA,IACA,WAAA,KAEA,sCACE,WAAA,YACA,KAAA,EAAA,EAAA,KACA,MAAA,KACA,OAAA,IACA,QAAA,EACA,aAAA,IACA,YAAA,IACA,YAAA,OACA,OAAA,QACA,iBAAA,KACA,gBAAA,YACA,OAAA,EAEA,WAAA,KAAA,MAAA,YACA,cAAA,KAAA,MAAA,YACA,QAAA,GlC5KE,WAAA,QAAA,IAAA,KAIA,uCkCwJJ,sClCvJM,WAAA,MkC2KN,6BACE,QAAA,EASJ,kBACE,SAAA,SACA,MAAA,IACA,OAAA,QACA,KAAA,IACA,YAAA,QACA,eAAA,QACA,MAAA,KACA,WAAA,OnDoxLF,2CmD9wLE,2CAEE,OAAA,UAAA,eAGF,qDACE,iBAAA,KAGF,iCACE,MAAA,KE7NJ,kCACE,GAAK,UAAA,gBADP,0BACE,GAAK,UAAA,gBAIP,gBACE,QAAA,aACA,MAAA,KACA,OAAA,KACA,eAAA,QACA,OAAA,MAAA,MAAA,aACA,mBAAA,YAEA,cAAA,IACA,kBAAA,KAAA,OAAA,SAAA,eAAA,UAAA,KAAA,OAAA,SAAA,eAGF,mBACE,MAAA,KACA,OAAA,KACA,aAAA,KAQF,gCACE,GACE,UAAA,SAEF,IACE,QAAA,EACA,UAAA,MANJ,wBACE,GACE,UAAA,SAEF,IACE,QAAA,EACA,UAAA,MAKJ,cACE,QAAA,aACA,MAAA,KACA,OAAA,KACA,eAAA,QACA,iBAAA,aAEA,cAAA,IACA,QAAA,EACA,kBAAA,KAAA,OAAA,SAAA,aAAA,UAAA,KAAA,OAAA,SAAA,aAGF,iBACE,MAAA,KACA,OAAA,KAIA,uCACE,gBrDo/LJ,cqDl/LM,2BAAA,KAAA,mBAAA,MCjEN,WACE,SAAA,MACA,OAAA,EACA,QAAA,KACA,QAAA,KACA,eAAA,OACA,UAAA,KAEA,WAAA,OACA,iBAAA,KACA,gBAAA,YACA,QAAA,ErCKI,WAAA,UAAA,IAAA,YAIA,uCqCpBN,WrCqBQ,WAAA,MqCLR,oBPdE,SAAA,MACA,IAAA,EACA,KAAA,EACA,QAAA,KACA,MAAA,MACA,OAAA,MACA,iBAAA,KAGA,yBAAS,QAAA,EACT,yBAAS,QAAA,GOQX,kBACE,QAAA,KACA,YAAA,OACA,gBAAA,cACA,QAAA,KAAA,KAEA,6BACE,QAAA,MAAA,MACA,WAAA,OACA,aAAA,OACA,cAAA,OAIJ,iBACE,cAAA,EACA,YAAA,IAGF,gBACE,UAAA,EACA,QAAA,KAAA,KACA,WAAA,KAGF,iBACE,IAAA,EACA,KAAA,EACA,MAAA,MACA,aAAA,IAAA,MAAA,eACA,UAAA,kBAGF,eACE,IAAA,EACA,MAAA,EACA,MAAA,MACA,YAAA,IAAA,MAAA,eACA,UAAA,iBAGF,eACE,IAAA,EACA,MAAA,EACA,KAAA,EACA,OAAA,KACA,WAAA,KACA,cAAA,IAAA,MAAA,eACA,UAAA,kBAGF,kBACE,MAAA,EACA,KAAA,EACA,OAAA,KACA,WAAA,KACA,WAAA,IAAA,MAAA,eACA,UAAA,iBAGF,gBACE,UAAA,KCjFF,aACE,QAAA,aACA,WAAA,IACA,eAAA,OACA,OAAA,KACA,iBAAA,aACA,QAAA,GAEA,yBACE,QAAA,aACA,QAAA,GAKJ,gBACE,WAAA,KAGF,gBACE,WAAA,KAGF,gBACE,WAAA,MAKA,+BACE,kBAAA,iBAAA,GAAA,YAAA,SAAA,UAAA,iBAAA,GAAA,YAAA,SAIJ,oCACE,IACE,QAAA,IAFJ,4BACE,IACE,QAAA,IAIJ,kBACE,mBAAA,8DAAA,WAAA,8DACA,kBAAA,KAAA,KAAA,UAAA,KAAA,KACA,kBAAA,iBAAA,GAAA,OAAA,SAAA,UAAA,iBAAA,GAAA,OAAA,SAGF,oCACE,KACE,sBAAA,MAAA,GAAA,cAAA,MAAA,IAFJ,4BACE,KACE,sBAAA,MAAA,GAAA,cAAA,MAAA,IH9CF,iBACE,QAAA,MACA,MAAA,KACA,QAAA,GIJF,cACE,MAAA,QAGE,oBAAA,oBAEE,MAAA,QANN,gBACE,MAAA,QAGE,sBAAA,sBAEE,MAAA,QANN,cACE,MAAA,QAGE,oBAAA,oBAEE,MAAA,QANN,WACE,MAAA,QAGE,iBAAA,iBAEE,MAAA,QANN,cACE,MAAA,QAGE,oBAAA,oBAEE,MAAA,QANN,aACE,MAAA,QAGE,mBAAA,mBAEE,MAAA,QANN,YACE,MAAA,QAGE,kBAAA,kBAEE,MAAA,QANN,WACE,MAAA,QAGE,iBAAA,iBAEE,MAAA,QCLR,OACE,SAAA,SACA,MAAA,KAEA,eACE,QAAA,MACA,YAAA,uBACA,QAAA,GAGF,SACE,SAAA,SACA,IAAA,EACA,KAAA,EACA,MAAA,KACA,OAAA,KAKF,WACE,kBAAA,KADF,WACE,kBAAA,mBADF,YACE,kBAAA,oBADF,YACE,kBAAA,oBCrBJ,WACE,SAAA,MACA,IAAA,EACA,MAAA,EACA,KAAA,EACA,QAAA,KAGF,cACE,SAAA,MACA,MAAA,EACA,OAAA,EACA,KAAA,EACA,QAAA,KAQE,YACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,KjDqCF,yBiDxCA,eACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,MjDqCF,yBiDxCA,eACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,MjDqCF,yBiDxCA,eACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,MjDqCF,0BiDxCA,eACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,MjDqCF,0BiDxCA,gBACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,MCzBN,QACE,QAAA,KACA,eAAA,IACA,YAAA,OACA,WAAA,QAGF,QACE,QAAA,KACA,KAAA,EAAA,EAAA,KACA,eAAA,OACA,WAAA,QCRF,iB5Dk4MA,0D6D93ME,SAAA,mBACA,MAAA,cACA,OAAA,cACA,QAAA,YACA,OAAA,eACA,SAAA,iBACA,KAAA,wBACA,YAAA,iBACA,OAAA,YCXA,uBACE,SAAA,SACA,IAAA,EACA,MAAA,EACA,OAAA,EACA,KAAA,EACA,QAAA,EACA,QAAA,GCRJ,eCAE,SAAA,OACA,cAAA,SACA,YAAA,OCNF,IACE,QAAA,aACA,WAAA,QACA,MAAA,IACA,WAAA,IACA,iBAAA,aACA,QAAA,ICyDM,gBAOI,eAAA,mBAPJ,WAOI,eAAA,cAPJ,cAOI,eAAA,iBAPJ,cAOI,eAAA,iBAPJ,mBAOI,eAAA,sBAPJ,gBAOI,eAAA,mBAPJ,aAOI,MAAA,eAPJ,WAOI,MAAA,gBAPJ,YAOI,MAAA,eAPJ,WAOI,QAAA,YAPJ,YAOI,QAAA,cAPJ,YAOI,QAAA,aAPJ,YAOI,QAAA,cAPJ,aAOI,QAAA,YAPJ,eAOI,SAAA,eAPJ,iBAOI,SAAA,iBAPJ,kBAOI,SAAA,kBAPJ,iBAOI,SAAA,iBAPJ,UAOI,QAAA,iBAPJ,gBAOI,QAAA,uBAPJ,SAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,SAOI,QAAA,gBAPJ,aAOI,QAAA,oBAPJ,cAOI,QAAA,qBAPJ,QAOI,QAAA,eAPJ,eAOI,QAAA,sBAPJ,QAOI,QAAA,eAPJ,QAOI,WAAA,EAAA,MAAA,KAAA,0BAPJ,WAOI,WAAA,EAAA,QAAA,OAAA,2BAPJ,WAOI,WAAA,EAAA,KAAA,KAAA,2BAPJ,aAOI,WAAA,eAPJ,iBAOI,SAAA,iBAPJ,mBAOI,SAAA,mBAPJ,mBAOI,SAAA,mBAPJ,gBAOI,SAAA,gBAPJ,iBAOI,SAAA,yBAAA,SAAA,iBAPJ,OAOI,IAAA,YAPJ,QAOI,IAAA,cAPJ,SAOI,IAAA,eAPJ,UAOI,OAAA,YAPJ,WAOI,OAAA,cAPJ,YAOI,OAAA,eAPJ,SAOI,KAAA,YAPJ,UAOI,KAAA,cAPJ,WAOI,KAAA,eAPJ,OAOI,MAAA,YAPJ,QAOI,MAAA,cAPJ,SAOI,MAAA,eAPJ,kBAOI,UAAA,+BAPJ,oBAOI,UAAA,2BAPJ,oBAOI,UAAA,2BAPJ,QAOI,OAAA,IAAA,MAAA,kBAPJ,UAOI,OAAA,YAPJ,YAOI,WAAA,IAAA,MAAA,kBAPJ,cAOI,WAAA,YAPJ,YAOI,aAAA,IAAA,MAAA,kBAPJ,cAOI,aAAA,YAPJ,eAOI,cAAA,IAAA,MAAA,kBAPJ,iBAOI,cAAA,YAPJ,cAOI,YAAA,IAAA,MAAA,kBAPJ,gBAOI,YAAA,YAPJ,gBAOI,aAAA,kBAPJ,kBAOI,aAAA,kBAPJ,gBAOI,aAAA,kBAPJ,aAOI,aAAA,kBAPJ,gBAOI,aAAA,kBAPJ,eAOI,aAAA,kBAPJ,cAOI,aAAA,kBAPJ,aAOI,aAAA,kBAPJ,cAOI,aAAA,eAPJ,UAOI,aAAA,cAPJ,UAOI,aAAA,cAPJ,UAOI,aAAA,cAPJ,UAOI,aAAA,cAPJ,UAOI,aAAA,cAPJ,MAOI,MAAA,cAPJ,MAOI,MAAA,cAPJ,MAOI,MAAA,cAPJ,OAOI,MAAA,eAPJ,QAOI,MAAA,eAPJ,QAOI,UAAA,eAPJ,QAOI,MAAA,gBAPJ,YAOI,UAAA,gBAPJ,MAOI,OAAA,cAPJ,MAOI,OAAA,cAPJ,MAOI,OAAA,cAPJ,OAOI,OAAA,eAPJ,QAOI,OAAA,eAPJ,QAOI,WAAA,eAPJ,QAOI,OAAA,gBAPJ,YAOI,WAAA,gBAPJ,WAOI,KAAA,EAAA,EAAA,eAPJ,UAOI,eAAA,cAPJ,aAOI,eAAA,iBAPJ,kBAOI,eAAA,sBAPJ,qBAOI,eAAA,yBAPJ,aAOI,UAAA,YAPJ,aAOI,UAAA,YAPJ,eAOI,YAAA,YAPJ,eAOI,YAAA,YAPJ,WAOI,UAAA,eAPJ,aAOI,UAAA,iBAPJ,mBAOI,UAAA,uBAPJ,OAOI,IAAA,YAPJ,OAOI,IAAA,iBAPJ,OAOI,IAAA,gBAPJ,OAOI,IAAA,eAPJ,OAOI,IAAA,iBAPJ,OAOI,IAAA,eAPJ,uBAOI,gBAAA,qBAPJ,qBAOI,gBAAA,mBAPJ,wBAOI,gBAAA,iBAPJ,yBAOI,gBAAA,wBAPJ,wBAOI,gBAAA,uBAPJ,wBAOI,gBAAA,uBAPJ,mBAOI,YAAA,qBAPJ,iBAOI,YAAA,mBAPJ,oBAOI,YAAA,iBAPJ,sBAOI,YAAA,mBAPJ,qBAOI,YAAA,kBAPJ,qBAOI,cAAA,qBAPJ,mBAOI,cAAA,mBAPJ,sBAOI,cAAA,iBAPJ,uBAOI,cAAA,wBAPJ,sBAOI,cAAA,uBAPJ,uBAOI,cAAA,kBAPJ,iBAOI,WAAA,eAPJ,kBAOI,WAAA,qBAPJ,gBAOI,WAAA,mBAPJ,mBAOI,WAAA,iBAPJ,qBAOI,WAAA,mBAPJ,oBAOI,WAAA,kBAPJ,aAOI,MAAA,aAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,KAOI,OAAA,YAPJ,KAOI,OAAA,iBAPJ,KAOI,OAAA,gBAPJ,KAOI,OAAA,eAPJ,KAOI,OAAA,iBAPJ,KAOI,OAAA,eAPJ,QAOI,OAAA,eAPJ,MAOI,aAAA,YAAA,YAAA,YAPJ,MAOI,aAAA,iBAAA,YAAA,iBAPJ,MAOI,aAAA,gBAAA,YAAA,gBAPJ,MAOI,aAAA,eAAA,YAAA,eAPJ,MAOI,aAAA,iBAAA,YAAA,iBAPJ,MAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,MAOI,WAAA,YAAA,cAAA,YAPJ,MAOI,WAAA,iBAAA,cAAA,iBAPJ,MAOI,WAAA,gBAAA,cAAA,gBAPJ,MAOI,WAAA,eAAA,cAAA,eAPJ,MAOI,WAAA,iBAAA,cAAA,iBAPJ,MAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,MAOI,WAAA,YAPJ,MAOI,WAAA,iBAPJ,MAOI,WAAA,gBAPJ,MAOI,WAAA,eAPJ,MAOI,WAAA,iBAPJ,MAOI,WAAA,eAPJ,SAOI,WAAA,eAPJ,MAOI,aAAA,YAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,gBAPJ,MAOI,aAAA,eAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,eAPJ,SAOI,aAAA,eAPJ,MAOI,cAAA,YAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,gBAPJ,MAOI,cAAA,eAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,eAPJ,SAOI,cAAA,eAPJ,MAOI,YAAA,YAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,gBAPJ,MAOI,YAAA,eAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,eAPJ,SAOI,YAAA,eAPJ,KAOI,QAAA,YAPJ,KAOI,QAAA,iBAPJ,KAOI,QAAA,gBAPJ,KAOI,QAAA,eAPJ,KAOI,QAAA,iBAPJ,KAOI,QAAA,eAPJ,MAOI,cAAA,YAAA,aAAA,YAPJ,MAOI,cAAA,iBAAA,aAAA,iBAPJ,MAOI,cAAA,gBAAA,aAAA,gBAPJ,MAOI,cAAA,eAAA,aAAA,eAPJ,MAOI,cAAA,iBAAA,aAAA,iBAPJ,MAOI,cAAA,eAAA,aAAA,eAPJ,MAOI,YAAA,YAAA,eAAA,YAPJ,MAOI,YAAA,iBAAA,eAAA,iBAPJ,MAOI,YAAA,gBAAA,eAAA,gBAPJ,MAOI,YAAA,eAAA,eAAA,eAPJ,MAOI,YAAA,iBAAA,eAAA,iBAPJ,MAOI,YAAA,eAAA,eAAA,eAPJ,MAOI,YAAA,YAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,gBAPJ,MAOI,YAAA,eAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,eAPJ,MAOI,cAAA,YAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,gBAPJ,MAOI,cAAA,eAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,eAPJ,MAOI,eAAA,YAPJ,MAOI,eAAA,iBAPJ,MAOI,eAAA,gBAPJ,MAOI,eAAA,eAPJ,MAOI,eAAA,iBAPJ,MAOI,eAAA,eAPJ,MAOI,aAAA,YAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,gBAPJ,MAOI,aAAA,eAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,eAPJ,gBAOI,YAAA,mCAPJ,MAOI,UAAA,iCAPJ,MAOI,UAAA,gCAPJ,MAOI,UAAA,8BAPJ,MAOI,UAAA,gCAPJ,MAOI,UAAA,kBAPJ,MAOI,UAAA,eAPJ,YAOI,WAAA,iBAPJ,YAOI,WAAA,iBAPJ,UAOI,YAAA,cAPJ,YAOI,YAAA,kBAPJ,WAOI,YAAA,cAPJ,SAOI,YAAA,cAPJ,WAOI,YAAA,iBAPJ,MAOI,YAAA,YAPJ,OAOI,YAAA,eAPJ,SAOI,YAAA,cAPJ,OAOI,YAAA,YAPJ,YAOI,WAAA,eAPJ,UAOI,WAAA,gBAPJ,aAOI,WAAA,iBAPJ,sBAOI,gBAAA,eAPJ,2BAOI,gBAAA,oBAPJ,8BAOI,gBAAA,uBAPJ,gBAOI,eAAA,oBAPJ,gBAOI,eAAA,oBAPJ,iBAOI,eAAA,qBAPJ,WAOI,YAAA,iBAPJ,aAOI,YAAA,iBAPJ,YAOI,UAAA,qBAAA,WAAA,qBAPJ,cAIQ,kBAAA,EAGJ,MAAA,6DAPJ,gBAIQ,kBAAA,EAGJ,MAAA,+DAPJ,cAIQ,kBAAA,EAGJ,MAAA,6DAPJ,WAIQ,kBAAA,EAGJ,MAAA,0DAPJ,cAIQ,kBAAA,EAGJ,MAAA,6DAPJ,aAIQ,kBAAA,EAGJ,MAAA,4DAPJ,YAIQ,kBAAA,EAGJ,MAAA,2DAPJ,WAIQ,kBAAA,EAGJ,MAAA,0DAPJ,YAIQ,kBAAA,EAGJ,MAAA,2DAPJ,YAIQ,kBAAA,EAGJ,MAAA,2DAPJ,WAIQ,kBAAA,EAGJ,MAAA,0DAPJ,YAIQ,kBAAA,EAGJ,MAAA,kBAPJ,eAIQ,kBAAA,EAGJ,MAAA,yBAPJ,eAIQ,kBAAA,EAGJ,MAAA,+BAPJ,YAIQ,kBAAA,EAGJ,MAAA,kBAjBJ,iBACE,kBAAA,KADF,iBACE,kBAAA,IADF,iBACE,kBAAA,KADF,kBACE,kBAAA,EASF,YAIQ,gBAAA,EAGJ,iBAAA,2DAPJ,cAIQ,gBAAA,EAGJ,iBAAA,6DAPJ,YAIQ,gBAAA,EAGJ,iBAAA,2DAPJ,SAIQ,gBAAA,EAGJ,iBAAA,wDAPJ,YAIQ,gBAAA,EAGJ,iBAAA,2DAPJ,WAIQ,gBAAA,EAGJ,iBAAA,0DAPJ,UAIQ,gBAAA,EAGJ,iBAAA,yDAPJ,SAIQ,gBAAA,EAGJ,iBAAA,wDAPJ,UAIQ,gBAAA,EAGJ,iBAAA,yDAPJ,UAIQ,gBAAA,EAGJ,iBAAA,yDAPJ,SAIQ,gBAAA,EAGJ,iBAAA,wDAPJ,gBAIQ,gBAAA,EAGJ,iBAAA,sBAjBJ,eACE,gBAAA,IADF,eACE,gBAAA,KADF,eACE,gBAAA,IADF,eACE,gBAAA,KADF,gBACE,gBAAA,EASF,aAOI,iBAAA,6BAPJ,iBAOI,oBAAA,cAAA,iBAAA,cAAA,YAAA,cAPJ,kBAOI,oBAAA,eAAA,iBAAA,eAAA,YAAA,eAPJ,kBAOI,oBAAA,eAAA,iBAAA,eAAA,YAAA,eAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,eAPJ,SAOI,cAAA,iBAPJ,WAOI,cAAA,YAPJ,WAOI,cAAA,gBAPJ,WAOI,cAAA,iBAPJ,WAOI,cAAA,gBAPJ,gBAOI,cAAA,cAPJ,cAOI,cAAA,gBAPJ,aAOI,uBAAA,iBAAA,wBAAA,iBAPJ,aAOI,wBAAA,iBAAA,2BAAA,iBAPJ,gBAOI,2BAAA,iBAAA,0BAAA,iBAPJ,eAOI,0BAAA,iBAAA,uBAAA,iBAPJ,SAOI,WAAA,kBAPJ,WAOI,WAAA,iBzDPR,yByDAI,gBAOI,MAAA,eAPJ,cAOI,MAAA,gBAPJ,eAOI,MAAA,eAPJ,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,UAOI,IAAA,YAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,gBAPJ,UAOI,IAAA,eAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,eAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,eAOI,WAAA,eAPJ,aAOI,WAAA,gBAPJ,gBAOI,WAAA,kBzDPR,yByDAI,gBAOI,MAAA,eAPJ,cAOI,MAAA,gBAPJ,eAOI,MAAA,eAPJ,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,UAOI,IAAA,YAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,gBAPJ,UAOI,IAAA,eAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,eAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,eAOI,WAAA,eAPJ,aAOI,WAAA,gBAPJ,gBAOI,WAAA,kBzDPR,yByDAI,gBAOI,MAAA,eAPJ,cAOI,MAAA,gBAPJ,eAOI,MAAA,eAPJ,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,UAOI,IAAA,YAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,gBAPJ,UAOI,IAAA,eAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,eAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,eAOI,WAAA,eAPJ,aAOI,WAAA,gBAPJ,gBAOI,WAAA,kBzDPR,0ByDAI,gBAOI,MAAA,eAPJ,cAOI,MAAA,gBAPJ,eAOI,MAAA,eAPJ,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,UAOI,IAAA,YAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,gBAPJ,UAOI,IAAA,eAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,eAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,eAOI,WAAA,eAPJ,aAOI,WAAA,gBAPJ,gBAOI,WAAA,kBzDPR,0ByDAI,iBAOI,MAAA,eAPJ,eAOI,MAAA,gBAPJ,gBAOI,MAAA,eAPJ,cAOI,QAAA,iBAPJ,oBAOI,QAAA,uBAPJ,aAOI,QAAA,gBAPJ,YAOI,QAAA,eAPJ,aAOI,QAAA,gBAPJ,iBAOI,QAAA,oBAPJ,kBAOI,QAAA,qBAPJ,YAOI,QAAA,eAPJ,mBAOI,QAAA,sBAPJ,YAOI,QAAA,eAPJ,eAOI,KAAA,EAAA,EAAA,eAPJ,cAOI,eAAA,cAPJ,iBAOI,eAAA,iBAPJ,sBAOI,eAAA,sBAPJ,yBAOI,eAAA,yBAPJ,iBAOI,UAAA,YAPJ,iBAOI,UAAA,YAPJ,mBAOI,YAAA,YAPJ,mBAOI,YAAA,YAPJ,eAOI,UAAA,eAPJ,iBAOI,UAAA,iBAPJ,uBAOI,UAAA,uBAPJ,WAOI,IAAA,YAPJ,WAOI,IAAA,iBAPJ,WAOI,IAAA,gBAPJ,WAOI,IAAA,eAPJ,WAOI,IAAA,iBAPJ,WAOI,IAAA,eAPJ,2BAOI,gBAAA,qBAPJ,yBAOI,gBAAA,mBAPJ,4BAOI,gBAAA,iBAPJ,6BAOI,gBAAA,wBAPJ,4BAOI,gBAAA,uBAPJ,4BAOI,gBAAA,uBAPJ,uBAOI,YAAA,qBAPJ,qBAOI,YAAA,mBAPJ,wBAOI,YAAA,iBAPJ,0BAOI,YAAA,mBAPJ,yBAOI,YAAA,kBAPJ,yBAOI,cAAA,qBAPJ,uBAOI,cAAA,mBAPJ,0BAOI,cAAA,iBAPJ,2BAOI,cAAA,wBAPJ,0BAOI,cAAA,uBAPJ,2BAOI,cAAA,kBAPJ,qBAOI,WAAA,eAPJ,sBAOI,WAAA,qBAPJ,oBAOI,WAAA,mBAPJ,uBAOI,WAAA,iBAPJ,yBAOI,WAAA,mBAPJ,wBAOI,WAAA,kBAPJ,iBAOI,MAAA,aAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,gBAOI,MAAA,YAPJ,SAOI,OAAA,YAPJ,SAOI,OAAA,iBAPJ,SAOI,OAAA,gBAPJ,SAOI,OAAA,eAPJ,SAOI,OAAA,iBAPJ,SAOI,OAAA,eAPJ,YAOI,OAAA,eAPJ,UAOI,aAAA,YAAA,YAAA,YAPJ,UAOI,aAAA,iBAAA,YAAA,iBAPJ,UAOI,aAAA,gBAAA,YAAA,gBAPJ,UAOI,aAAA,eAAA,YAAA,eAPJ,UAOI,aAAA,iBAAA,YAAA,iBAPJ,UAOI,aAAA,eAAA,YAAA,eAPJ,aAOI,aAAA,eAAA,YAAA,eAPJ,UAOI,WAAA,YAAA,cAAA,YAPJ,UAOI,WAAA,iBAAA,cAAA,iBAPJ,UAOI,WAAA,gBAAA,cAAA,gBAPJ,UAOI,WAAA,eAAA,cAAA,eAPJ,UAOI,WAAA,iBAAA,cAAA,iBAPJ,UAOI,WAAA,eAAA,cAAA,eAPJ,aAOI,WAAA,eAAA,cAAA,eAPJ,UAOI,WAAA,YAPJ,UAOI,WAAA,iBAPJ,UAOI,WAAA,gBAPJ,UAOI,WAAA,eAPJ,UAOI,WAAA,iBAPJ,UAOI,WAAA,eAPJ,aAOI,WAAA,eAPJ,UAOI,aAAA,YAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,gBAPJ,UAOI,aAAA,eAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,eAPJ,aAOI,aAAA,eAPJ,UAOI,cAAA,YAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,gBAPJ,UAOI,cAAA,eAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,eAPJ,aAOI,cAAA,eAPJ,UAOI,YAAA,YAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,gBAPJ,UAOI,YAAA,eAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,eAPJ,aAOI,YAAA,eAPJ,SAOI,QAAA,YAPJ,SAOI,QAAA,iBAPJ,SAOI,QAAA,gBAPJ,SAOI,QAAA,eAPJ,SAOI,QAAA,iBAPJ,SAOI,QAAA,eAPJ,UAOI,cAAA,YAAA,aAAA,YAPJ,UAOI,cAAA,iBAAA,aAAA,iBAPJ,UAOI,cAAA,gBAAA,aAAA,gBAPJ,UAOI,cAAA,eAAA,aAAA,eAPJ,UAOI,cAAA,iBAAA,aAAA,iBAPJ,UAOI,cAAA,eAAA,aAAA,eAPJ,UAOI,YAAA,YAAA,eAAA,YAPJ,UAOI,YAAA,iBAAA,eAAA,iBAPJ,UAOI,YAAA,gBAAA,eAAA,gBAPJ,UAOI,YAAA,eAAA,eAAA,eAPJ,UAOI,YAAA,iBAAA,eAAA,iBAPJ,UAOI,YAAA,eAAA,eAAA,eAPJ,UAOI,YAAA,YAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,gBAPJ,UAOI,YAAA,eAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,eAPJ,UAOI,cAAA,YAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,gBAPJ,UAOI,cAAA,eAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,eAPJ,UAOI,eAAA,YAPJ,UAOI,eAAA,iBAPJ,UAOI,eAAA,gBAPJ,UAOI,eAAA,eAPJ,UAOI,eAAA,iBAPJ,UAOI,eAAA,eAPJ,UAOI,aAAA,YAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,gBAPJ,UAOI,aAAA,eAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,eAPJ,gBAOI,WAAA,eAPJ,cAOI,WAAA,gBAPJ,iBAOI,WAAA,kBCnDZ,0BD4CQ,MAOI,UAAA,iBAPJ,MAOI,UAAA,eAPJ,MAOI,UAAA,kBAPJ,MAOI,UAAA,kBChCZ,aDyBQ,gBAOI,QAAA,iBAPJ,sBAOI,QAAA,uBAPJ,eAOI,QAAA,gBAPJ,cAOI,QAAA,eAPJ,eAOI,QAAA,gBAPJ,mBAOI,QAAA,oBAPJ,oBAOI,QAAA,qBAPJ,cAOI,QAAA,eAPJ,qBAOI,QAAA,sBAPJ,cAOI,QAAA","sourcesContent":["/*!\n * Bootstrap v5.1.0 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n\n// scss-docs-start import-stack\n// Configuration\n@import \"functions\";\n@import \"variables\";\n@import \"mixins\";\n@import \"utilities\";\n\n// Layout & components\n@import \"root\";\n@import \"reboot\";\n@import \"type\";\n@import \"images\";\n@import \"containers\";\n@import \"grid\";\n@import \"tables\";\n@import \"forms\";\n@import \"buttons\";\n@import \"transitions\";\n@import \"dropdown\";\n@import \"button-group\";\n@import \"nav\";\n@import \"navbar\";\n@import \"card\";\n@import \"accordion\";\n@import \"breadcrumb\";\n@import \"pagination\";\n@import \"badge\";\n@import \"alert\";\n@import \"progress\";\n@import \"list-group\";\n@import \"close\";\n@import \"toasts\";\n@import \"modal\";\n@import \"tooltip\";\n@import \"popover\";\n@import \"carousel\";\n@import \"spinners\";\n@import \"offcanvas\";\n@import \"placeholders\";\n\n// Helpers\n@import \"helpers\";\n\n// Utilities\n@import \"utilities/api\";\n// scss-docs-end import-stack\n",":root {\n // Note: Custom variable values only support SassScript inside `#{}`.\n\n // Colors\n //\n // Generate palettes for full colors, grays, and theme colors.\n\n @each $color, $value in $colors {\n --#{$variable-prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $grays {\n --#{$variable-prefix}gray-#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$variable-prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors-rgb {\n --#{$variable-prefix}#{$color}-rgb: #{$value};\n }\n\n --#{$variable-prefix}white-rgb: #{to-rgb($white)};\n --#{$variable-prefix}black-rgb: #{to-rgb($black)};\n --#{$variable-prefix}body-rgb: #{to-rgb($body-color)};\n\n // Fonts\n\n // Note: Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --#{$variable-prefix}font-sans-serif: #{inspect($font-family-sans-serif)};\n --#{$variable-prefix}font-monospace: #{inspect($font-family-monospace)};\n --#{$variable-prefix}gradient: #{$gradient};\n\n // Root and body\n // stylelint-disable custom-property-empty-line-before\n // scss-docs-start root-body-variables\n @if $font-size-root != null {\n --#{$variable-prefix}root-font-size: #{$font-size-root};\n }\n --#{$variable-prefix}body-font-family: #{$font-family-base};\n --#{$variable-prefix}body-font-size: #{$font-size-base};\n --#{$variable-prefix}body-font-weight: #{$font-weight-base};\n --#{$variable-prefix}body-line-height: #{$line-height-base};\n --#{$variable-prefix}body-color: #{$body-color};\n @if $body-text-align != null {\n --#{$variable-prefix}body-text-align: #{$body-text-align};\n }\n --#{$variable-prefix}body-bg: #{$body-bg};\n // scss-docs-end root-body-variables\n // stylelint-enable custom-property-empty-line-before\n}\n","// stylelint-disable declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n\n// Root\n//\n// Ability to the value of the root font sizes, affecting the value of `rem`.\n// null by default, thus nothing is generated.\n\n:root {\n @if $font-size-root != null {\n font-size: var(--#{$variable-prefix}-root-font-size);\n }\n\n @if $enable-smooth-scroll {\n @media (prefers-reduced-motion: no-preference) {\n scroll-behavior: smooth;\n }\n }\n}\n\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Prevent adjustments of font size after orientation changes in iOS.\n// 4. Change the default tap highlight to be completely transparent in iOS.\n\n// scss-docs-start reboot-body-rules\nbody {\n margin: 0; // 1\n font-family: var(--#{$variable-prefix}body-font-family);\n @include font-size(var(--#{$variable-prefix}body-font-size));\n font-weight: var(--#{$variable-prefix}body-font-weight);\n line-height: var(--#{$variable-prefix}body-line-height);\n color: var(--#{$variable-prefix}body-color);\n text-align: var(--#{$variable-prefix}body-text-align);\n background-color: var(--#{$variable-prefix}body-bg); // 2\n -webkit-text-size-adjust: 100%; // 3\n -webkit-tap-highlight-color: rgba($black, 0); // 4\n}\n// scss-docs-end reboot-body-rules\n\n\n// Content grouping\n//\n// 1. Reset Firefox's gray color\n// 2. Set correct height and prevent the `size` attribute to make the `hr` look like an input field\n\nhr {\n margin: $hr-margin-y 0;\n color: $hr-color; // 1\n background-color: currentColor;\n border: 0;\n opacity: $hr-opacity;\n}\n\nhr:not([size]) {\n height: $hr-height; // 2\n}\n\n\n// Typography\n//\n// 1. Remove top margins from headings\n// By default, `

`-`

` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n\n%heading {\n margin-top: 0; // 1\n margin-bottom: $headings-margin-bottom;\n font-family: $headings-font-family;\n font-style: $headings-font-style;\n font-weight: $headings-font-weight;\n line-height: $headings-line-height;\n color: $headings-color;\n}\n\nh1 {\n @extend %heading;\n @include font-size($h1-font-size);\n}\n\nh2 {\n @extend %heading;\n @include font-size($h2-font-size);\n}\n\nh3 {\n @extend %heading;\n @include font-size($h3-font-size);\n}\n\nh4 {\n @extend %heading;\n @include font-size($h4-font-size);\n}\n\nh5 {\n @extend %heading;\n @include font-size($h5-font-size);\n}\n\nh6 {\n @extend %heading;\n @include font-size($h6-font-size);\n}\n\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `

`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\n\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n\n// Abbreviations\n//\n// 1. Duplicate behavior to the data-bs-* attribute for our tooltip plugin\n// 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Prevent the text-decoration to be skipped.\n\nabbr[title],\nabbr[data-bs-original-title] { // 1\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n text-decoration-skip-ink: none; // 4\n}\n\n\n// Address\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\n\n// Lists\n\nol,\nul {\n padding-left: 2rem;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\n// 1. Undo browser default\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // 1\n}\n\n\n// Blockquote\n\nblockquote {\n margin: 0 0 1rem;\n}\n\n\n// Strong\n//\n// Add the correct font weight in Chrome, Edge, and Safari\n\nb,\nstrong {\n font-weight: $font-weight-bolder;\n}\n\n\n// Small\n//\n// Add the correct font size in all browsers\n\nsmall {\n @include font-size($small-font-size);\n}\n\n\n// Mark\n\nmark {\n padding: $mark-padding;\n background-color: $mark-bg;\n}\n\n\n// Sub and Sup\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n\nsub,\nsup {\n position: relative;\n @include font-size($sub-sup-font-size);\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n// Links\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n\n &:hover {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([class]) {\n &,\n &:hover {\n color: inherit;\n text-decoration: none;\n }\n}\n\n\n// Code\n\npre,\ncode,\nkbd,\nsamp {\n font-family: $font-family-code;\n @include font-size(1em); // Correct the odd `em` font sizing in all browsers.\n direction: ltr #{\"/* rtl:ignore */\"};\n unicode-bidi: bidi-override;\n}\n\n// 1. Remove browser default top margin\n// 2. Reset browser default of `1em` to use `rem`s\n// 3. Don't allow content to break outside\n\npre {\n display: block;\n margin-top: 0; // 1\n margin-bottom: 1rem; // 2\n overflow: auto; // 3\n @include font-size($code-font-size);\n color: $pre-color;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n @include font-size(inherit);\n color: inherit;\n word-break: normal;\n }\n}\n\ncode {\n @include font-size($code-font-size);\n color: $code-color;\n word-wrap: break-word;\n\n // Streamline the style when inside anchors to avoid broken underline and more\n a > & {\n color: inherit;\n }\n}\n\nkbd {\n padding: $kbd-padding-y $kbd-padding-x;\n @include font-size($kbd-font-size);\n color: $kbd-color;\n background-color: $kbd-bg;\n @include border-radius($border-radius-sm);\n\n kbd {\n padding: 0;\n @include font-size(1em);\n font-weight: $nested-kbd-font-weight;\n }\n}\n\n\n// Figures\n//\n// Apply a consistent margin strategy (matches our type styles).\n\nfigure {\n margin: 0 0 1rem;\n}\n\n\n// Images and content\n\nimg,\nsvg {\n vertical-align: middle;\n}\n\n\n// Tables\n//\n// Prevent double borders\n\ntable {\n caption-side: bottom;\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: $table-cell-padding-y;\n padding-bottom: $table-cell-padding-y;\n color: $table-caption-color;\n text-align: left;\n}\n\n// 1. Removes font-weight bold by inheriting\n// 2. Matches default `` alignment by inheriting `text-align`.\n// 3. Fix alignment for Safari\n\nth {\n font-weight: $table-th-font-weight; // 1\n text-align: inherit; // 2\n text-align: -webkit-match-parent; // 3\n}\n\nthead,\ntbody,\ntfoot,\ntr,\ntd,\nth {\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n}\n\n\n// Forms\n//\n// 1. Allow labels to use `margin` for spacing.\n\nlabel {\n display: inline-block; // 1\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n// See https://github.com/twbs/bootstrap/issues/24093\n\nbutton {\n // stylelint-disable-next-line property-disallowed-list\n border-radius: 0;\n}\n\n// Explicitly remove focus outline in Chromium when it shouldn't be\n// visible (e.g. as result of mouse click or touch tap). It already\n// should be doing this automatically, but seems to currently be\n// confused and applies its very visible two-tone outline anyway.\n\nbutton:focus:not(:focus-visible) {\n outline: 0;\n}\n\n// 1. Remove the margin in Firefox and Safari\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // 1\n font-family: inherit;\n @include font-size(inherit);\n line-height: inherit;\n}\n\n// Remove the inheritance of text transform in Firefox\nbutton,\nselect {\n text-transform: none;\n}\n// Set the cursor for non-`